Class: Quickfix::StreamText

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

Returns a new instance of StreamText.



28034
28035
28036
28037
28038
28039
28040
# File 'lib/quickfix_fields.rb', line 28034

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

Class Method Details

.fieldObject



28031
28032
28033
# File 'lib/quickfix_fields.rb', line 28031

def StreamText.field
  return 40056
end