Table of Contents

Interface IKickRequestSystemQueueData

Namespace
FishMMO.Server.Core
Assembly
FishMMO.Server.dll

Runtime data container for kick request processing state. Tracks database polling position for kick request processing.

public interface IKickRequestSystemQueueData : IRuntimeDataContainer, IServerComponent

Properties

IsProcessing

Indicates whether a kick request fetch is currently in progress.

bool IsProcessing { get; set; }

Property Value

bool

LastFetchTime

Timestamp of the last successful database fetch for kick requests.

DateTime LastFetchTime { get; set; }

Property Value

DateTime

LastPosition

Last processed position (ID) in the kick request table.

long LastPosition { get; set; }

Property Value

long