Class: Quickfix::BatchProcessMode

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

Instance Method Summary collapse

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