LongFeatureFlag

abstract class LongFeatureFlag(val key: String, val default: Long) : FeatureFlag<Long>

A simple Long feature flag.

Constructors

Link copied to clipboard
constructor(key: String, default: Long)

Properties

Link copied to clipboard
open override val default: Long

The default option to be assumed when no backing value is present.

Link copied to clipboard
open override val key: String

The value that's used to extract this feature flag value in the underlying storage mechanism.