Class: Quickfix::ThrottleStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ThrottleStatus

Returns a new instance of ThrottleStatus.



22080
22081
22082
22083
22084
22085
22086
# File 'lib/quickfix_fields.rb', line 22080

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