Class: Quickfix::MsgSeqNum

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MsgSeqNum

Returns a new instance of MsgSeqNum.



17231
17232
17233
17234
17235
17236
17237
# File 'lib/quickfix_fields.rb', line 17231

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

Class Method Details

.fieldObject



17228
17229
17230
# File 'lib/quickfix_fields.rb', line 17228

def MsgSeqNum.field
  return 34
end