State

sealed class State

Describes the condition of a file transfer protocol-enabled server with respect to its ability to perform file operations. There are six possible states: OFFLINE, ONLINE, STARTING, STOPPING, START_FAILED, and STOP_FAILED.

OFFLINE indicates that the server exists, but that it is not available for file operations. ONLINE indicates that the server is available to perform file operations. STARTING indicates that the server's was instantiated, but the server is not yet available to perform file operations. Under normal conditions, it can take a couple of minutes for the server to be completely operational. Both START_FAILED and STOP_FAILED are error conditions.

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard
object Offline : State
Link copied to clipboard
object Online : State
Link copied to clipboard
data class SdkUnknown(val value: String) : State
Link copied to clipboard
Link copied to clipboard
object Starting : State
Link copied to clipboard
object StopFailed : State
Link copied to clipboard
object Stopping : State

Properties

Link copied to clipboard
abstract val value: String