Class: Quickfix::BatchTotalMessages

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BatchTotalMessages

Returns a new instance of BatchTotalMessages.



56985
56986
56987
56988
56989
56990
56991
# File 'lib/quickfix_fields.rb', line 56985

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