type

ConnPollMode

@Serializable { simple=true }
enum class ConnPollMode : Enum

The polling modes supported by the connector framework

enum

disabled

Polling not supported

manual

Connector implementation handles all polling logic

buckets

Connector framework handles the polling logic using buckets strategy

constructors

fromStr

Return the ConnPollMode instance for the specified name.

fields

vals

List of ConnPollMode values indexed by ordinal

methods

isEnabled

Return true if the mode is not disabled.

Slot Details

buckets

const static ConnPollMode buckets := ...

Connector framework handles the polling logic using buckets strategy

disabled

const static ConnPollMode disabled := ...

Polling not supported

fromStr

static new fromStr(Str name, Bool checked := true)

Return the ConnPollMode instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

isEnabled

Bool isEnabled()

Return true if the mode is not disabled.

manual

const static ConnPollMode manual := ...

Connector implementation handles all polling logic

vals

const static ConnPollMode[] vals := ...

List of ConnPollMode values indexed by ordinal