Class: Quickfix::EventTime

Inherits:
UtcTimeStampField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

#<, #==, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EventTime

Returns a new instance of EventTime.



15294
15295
15296
15297
15298
15299
15300
# File 'lib/quickfix_fields.rb', line 15294

def initialize(data = nil)
	if( data == nil )
		super(1145)
	else
		super(1145, data)
	end
end

Class Method Details

.fieldObject



15291
15292
15293
# File 'lib/quickfix_fields.rb', line 15291

def EventTime.field
	return 1145
end