Class: Quickfix::NoExpiration

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoExpiration

Returns a new instance of NoExpiration.



2710
2711
2712
2713
2714
2715
2716
# File 'lib/quickfix_fields.rb', line 2710

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

Class Method Details

.fieldObject



2707
2708
2709
# File 'lib/quickfix_fields.rb', line 2707

def NoExpiration.field
	return 981
end