Class: Radiator::Type::PointInTime

Inherits:
Serializer show all
Defined in:
lib/radiator/type/point_in_time.rb

Overview

Instance Method Summary collapse

Methods included from Utils

#debug, #error, #extract_signatures, #hexlify, #pakArr, #pakC, #pakHash, #pakI, #pakL!, #pakS, #pakStr, #pakc, #paks, #send_log, #unhexlify, #varint, #warning

Constructor Details

#initialize(value) ⇒ PointInTime

Returns a new instance of PointInTime.



6
7
8
# File 'lib/radiator/type/point_in_time.rb', line 6

def initialize(value)
  super(:point_in_time, value)
end

Instance Method Details

#to_bytesObject



10
11
12
# File 'lib/radiator/type/point_in_time.rb', line 10

def to_bytes
  [Time.parse(@value + 'Z').to_i].pack('I')
end

#to_sObject



14
15
16
# File 'lib/radiator/type/point_in_time.rb', line 14

def to_s
  @value
end