Class: Quickfix::BatchID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



56969
56970
56971
# File 'lib/quickfix_fields.rb', line 56969

def BatchID.field
	return 50000
end