Class: Quickfix::MDStreamID

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

Returns a new instance of MDStreamID.



19844
19845
19846
19847
19848
19849
19850
# File 'lib/quickfix_fields.rb', line 19844

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

Class Method Details

.fieldObject



19841
19842
19843
# File 'lib/quickfix_fields.rb', line 19841

def MDStreamID.field
	return 1500
end