Class: Radiator::Type::PointInTime
- Inherits:
-
Serializer
- Object
- Serializer
- Radiator::Type::PointInTime
- Defined in:
- lib/radiator/type/point_in_time.rb
Overview
Instance Method Summary collapse
-
#initialize(value) ⇒ PointInTime
constructor
A new instance of PointInTime.
- #to_bytes ⇒ Object
- #to_s ⇒ Object
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_bytes ⇒ Object
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_s ⇒ Object
14 15 16 |
# File 'lib/radiator/type/point_in_time.rb', line 14 def to_s @value end |