Class: Quickfix::NoThrottleMsgType

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

Returns a new instance of NoThrottleMsgType.



22171
22172
22173
22174
22175
22176
22177
# File 'lib/quickfix_fields.rb', line 22171

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

Class Method Details

.fieldObject



22168
22169
22170
# File 'lib/quickfix_fields.rb', line 22168

def NoThrottleMsgType.field
  return 1618
end