Class: Quickfix::BatchTotalMessages

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) ⇒ 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

Class Method Details

.fieldObject



56982
56983
56984
# File 'lib/quickfix_fields.rb', line 56982

def BatchTotalMessages.field
  return 50001
end