Class: Quickfix::StreamType

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ StreamType

Returns a new instance of StreamType.



27956
27957
27958
27959
27960
27961
27962
# File 'lib/quickfix_fields.rb', line 27956

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

Class Method Details

.fieldObject



27953
27954
27955
# File 'lib/quickfix_fields.rb', line 27953

def StreamType.field
  return 40050
end