Class: LaunchDarkly::Interfaces::BigSegmentStoreMetadata

Inherits:
Object
  • Object
show all
Defined in:
lib/ldclient-rb/interfaces/big_segment_store.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(last_up_to_date) ⇒ BigSegmentStoreMetadata

Returns a new instance of BigSegmentStoreMetadata.



55
56
57
# File 'lib/ldclient-rb/interfaces/big_segment_store.rb', line 55

def initialize(last_up_to_date)
  @last_up_to_date = last_up_to_date
end

Instance Attribute Details

#last_up_to_dateInteger|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.

Returns:

  • (Integer|nil)


63
64
65
# File 'lib/ldclient-rb/interfaces/big_segment_store.rb', line 63

def last_up_to_date
  @last_up_to_date
end