Class: EntityCache::Record

Inherits:
Struct
  • Object
show all
Defined in:
lib/entity_cache/record.rb,
lib/entity_cache/record.rb,
lib/entity_cache/record/log_text.rb,
lib/entity_cache/record/destructure.rb,
lib/entity_cache/record/transformer.rb

Defined Under Namespace

Modules: Destructure, LogText, Transformer

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#entityObject

Returns the value of attribute entity

Returns:

  • (Object)

    the current value of entity



2
3
4
# File 'lib/entity_cache/record.rb', line 2

def entity
  @entity
end

#idObject

Returns the value of attribute id

Returns:

  • (Object)

    the current value of id



2
3
4
# File 'lib/entity_cache/record.rb', line 2

def id
  @id
end

#persisted_timeObject

Returns the value of attribute persisted_time

Returns:

  • (Object)

    the current value of persisted_time



2
3
4
# File 'lib/entity_cache/record.rb', line 2

def persisted_time
  @persisted_time
end

#persisted_versionObject

Returns the value of attribute persisted_version

Returns:

  • (Object)

    the current value of persisted_version



2
3
4
# File 'lib/entity_cache/record.rb', line 2

def persisted_version
  @persisted_version
end

#timeObject

Returns the value of attribute time

Returns:

  • (Object)

    the current value of time



2
3
4
# File 'lib/entity_cache/record.rb', line 2

def time
  @time
end

#versionObject

Returns the value of attribute version

Returns:

  • (Object)

    the current value of version



2
3
4
# File 'lib/entity_cache/record.rb', line 2

def version
  @version
end

Class Method Details

.build(id, entity, version, time, persisted_version: nil, persisted_time: nil) ⇒ Object



12
13
14
# File 'lib/entity_cache/record.rb', line 12

def self.build(id, entity, version, time, persisted_version: nil, persisted_time: nil)
  new(id, entity, version, time, persisted_version, persisted_time)
end

.destructure(instance, includes = nil) ⇒ Object



16
17
18
# File 'lib/entity_cache/record.rb', line 16

def self.destructure(instance, includes=nil)
  Destructure.(instance, includes)
end

Instance Method Details

#age_millisecondsObject



20
21
22
# File 'lib/entity_cache/record.rb', line 20

def age_milliseconds
  Clock::UTC.elapsed_milliseconds(time, Clock::UTC.now)
end

#persisted_age_millisecondsObject



24
25
26
27
28
29
30
31
# File 'lib/entity_cache/record.rb', line 24

def persisted_age_milliseconds
  return nil if persisted_time.nil?

  Clock::UTC.elapsed_milliseconds(
    persisted_time,
    time
  )
end

#persisted_age_versionsObject



33
34
35
36
37
# File 'lib/entity_cache/record.rb', line 33

def persisted_age_versions
  return nil if persisted_version.nil?

  version - persisted_version
end