Class: LaunchDarkly::Interfaces::BigSegmentStoreMetadata
- Inherits:
-
Object
- Object
- LaunchDarkly::Interfaces::BigSegmentStoreMetadata
- Defined in:
- lib/ldclient-rb/interfaces.rb
Overview
Values returned by LaunchDarkly::Interfaces::BigSegmentStore#get_metadata.
Instance Attribute Summary collapse
-
#last_up_to_date ⇒ Integer|nil
readonly
The Unix epoch millisecond timestamp of the last update to the BigSegmentStore.
Instance Method Summary collapse
-
#initialize(last_up_to_date) ⇒ BigSegmentStoreMetadata
constructor
A new instance of BigSegmentStoreMetadata.
Constructor Details
#initialize(last_up_to_date) ⇒ BigSegmentStoreMetadata
Returns a new instance of BigSegmentStoreMetadata.
468 469 470 |
# File 'lib/ldclient-rb/interfaces.rb', line 468 def initialize(last_up_to_date) @last_up_to_date = last_up_to_date end |
Instance Attribute Details
#last_up_to_date ⇒ Integer|nil (readonly)
The Unix epoch millisecond timestamp of the last update to the LaunchDarkly::Interfaces::BigSegmentStore. It is nil if the store has never been updated.
476 477 478 |
# File 'lib/ldclient-rb/interfaces.rb', line 476 def last_up_to_date @last_up_to_date end |