Table of Contents

Class ServerWindowTitleUpdaterRuntimeData

Namespace
FishMMO.Server.Implementation
Assembly
FishMMO.Server.dll

Runtime data container for ServerWindowTitleUpdater mutable state. Stores the transient window title string and countdown timer separate from the ServerBehaviour configuration.

public class ServerWindowTitleUpdaterRuntimeData : RuntimeDataContainer, IRuntimeDataContainer<INetworkManagerWrapper, ServerManager, NetworkConnection, IRuntimeDataContainer>, IRuntimeDataContainer, IServerComponent<INetworkManagerWrapper, ServerManager, NetworkConnection, IRuntimeDataContainer>, IServerComponent
Inheritance
ServerWindowTitleUpdaterRuntimeData
Implements
Inherited Members

Properties

NextUpdate

Time remaining in seconds until the next window title update.

public float NextUpdate { get; set; }

Property Value

float

Title

The current window or console title string, rebuilt each update cycle.

public string Title { get; set; }

Property Value

string

Methods

Clear()

Clears the runtime data to default values.

public override void Clear()

InitializeOnce()

Initializes the runtime data with default values.

public override ServerComponentInitializationStatus InitializeOnce()

Returns

ServerComponentInitializationStatus

OnDeinitialize()

Deinitializes the runtime data container.

protected override void OnDeinitialize()