Class: Quickfix::EndSeqNo

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EndSeqNo

Returns a new instance of EndSeqNo.



15476
15477
15478
15479
15480
15481
15482
# File 'lib/quickfix_fields.rb', line 15476

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

Class Method Details

.fieldObject



15473
15474
15475
# File 'lib/quickfix_fields.rb', line 15473

def EndSeqNo.field
	return 16
end