Class: Quickfix::ThrottleStatus

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

Class Method Details

.fieldObject



22077
22078
22079
# File 'lib/quickfix_fields.rb', line 22077

def ThrottleStatus.field
	return 1609
end