Class: Quickfix::EffectiveTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EffectiveTime

Returns a new instance of EffectiveTime.



11394
11395
11396
11397
11398
11399
11400
# File 'lib/quickfix_fields.rb', line 11394

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

Class Method Details

.fieldObject



11391
11392
11393
# File 'lib/quickfix_fields.rb', line 11391

def EffectiveTime.field
	return 168
end