Class: Quickfix::UnderlyingStreamDataProvider

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

Returns a new instance of UnderlyingStreamDataProvider.



55958
55959
55960
55961
55962
55963
55964
# File 'lib/quickfix_fields.rb', line 55958

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

Class Method Details

.fieldObject



55955
55956
55957
# File 'lib/quickfix_fields.rb', line 55955

def UnderlyingStreamDataProvider.field
  return 41977
end