Class: Quickfix::NoStreams

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

Returns a new instance of NoStreams.



27943
27944
27945
27946
27947
27948
27949
# File 'lib/quickfix_fields.rb', line 27943

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

Class Method Details

.fieldObject



27940
27941
27942
# File 'lib/quickfix_fields.rb', line 27940

def NoStreams.field
  return 40049
end