Class: Quickfix::StreamXID

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

Returns a new instance of StreamXID.



46169
46170
46171
46172
46173
46174
46175
# File 'lib/quickfix_fields.rb', line 46169

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

Class Method Details

.fieldObject



46166
46167
46168
# File 'lib/quickfix_fields.rb', line 46166

def StreamXID.field
	return 41303
end