Class: Quickfix::EncodedStreamText

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

Returns a new instance of EncodedStreamText.



40033
40034
40035
40036
40037
40038
40039
# File 'lib/quickfix_fields.rb', line 40033

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

Class Method Details

.fieldObject



40030
40031
40032
# File 'lib/quickfix_fields.rb', line 40030

def EncodedStreamText.field
  return 40983
end