Class: Quickfix::ThrottleMsgType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ThrottleMsgType

Returns a new instance of ThrottleMsgType.



22184
22185
22186
22187
22188
22189
22190
# File 'lib/quickfix_fields.rb', line 22184

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