Class: Quickfix::BatchProcessMode

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

Returns a new instance of BatchProcessMode.



56998
56999
57000
57001
57002
57003
57004
# File 'lib/quickfix_fields.rb', line 56998

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

Class Method Details

.fieldObject



56995
56996
56997
# File 'lib/quickfix_fields.rb', line 56995

def BatchProcessMode.field
  return 50002
end