Class: Quickfix::BatchID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BatchID

Returns a new instance of BatchID.



56972
56973
56974
56975
56976
56977
56978
# File 'lib/quickfix_fields.rb', line 56972

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