Class: Quickfix::ThrottleCountIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ThrottleCountIndicator

Returns a new instance of ThrottleCountIndicator.



22210
22211
22212
22213
22214
22215
22216
# File 'lib/quickfix_fields.rb', line 22210

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