Timeouts

@Serializable
data class Timeouts(var startup: Long = 120, var shutdown: Long = 120, var reconciliationGracePeriod: Long = 60, var inactiveGracePeriod: Long = 300)

Various timeouts used for the server

Constructors

Link copied to clipboard
constructor(startup: Long = 120, shutdown: Long = 120, reconciliationGracePeriod: Long = 60, inactiveGracePeriod: Long = 300)

Properties

Link copied to clipboard

The time in seconds to wait before shutting down an inactive servers (no players)

Link copied to clipboard

The time in seconds to wait before reconciling servers if LifecycleSettings.reconciliationBehavior is set to ReconcileBehavior.FORCE

Link copied to clipboard

The time in seconds before a server is considered to have failed to stop

Link copied to clipboard

The time in seconds before a server is considered to have failed to start