Class: Quickfix::EndSeqNo

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EndSeqNo

Returns a new instance of EndSeqNo.



58
59
60
61
62
63
64
# File 'lib/quickfix_fields.rb', line 58

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

Class Method Details

.fieldObject



55
56
57
# File 'lib/quickfix_fields.rb', line 55

def EndSeqNo.field
  return 16
end