enum OpenFeature::ProviderEvent

Defined in:

openfeature/event.cr

Enum Members

NOT_READY = 0

The provider has not been initialized.

READY = 1

The provider has been initialized, and is able to reliably resolve flag values.

ERROR = 2

The provider is initialized but is not able to reliably resolve flag values.

STALE = 3

The provider's cached state is no longer valid and may not be up-to-date with the source of truth.

FATAL = 4

The provider has entered an irrecoverable error state.

RECONCILING = 5

The provider is reconciling its state with a context change.

CONFIGURATION_CHANGED = 6

A change was made to the backend flag configuration.

CONTEXT_CHANGED = 7

The context associated with the provider has changed, and the provider has reconciled its associated state.

Instance Method Summary

Instance Method Detail

def configuration_changed? #

[View source]
def context_changed? #

[View source]
def error? #

[View source]
def fatal? #

[View source]
def not_ready? #

[View source]
def ready? #

[View source]
def reconciling? #

[View source]
def stale? #

[View source]