Class: Quickfix::MaxMessageSize
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::MaxMessageSize
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ MaxMessageSize
constructor
A new instance of MaxMessageSize.
Constructor Details
#initialize(data = nil) ⇒ MaxMessageSize
Returns a new instance of MaxMessageSize.
604 605 606 607 608 609 610 |
# File 'lib/quickfix_fields.rb', line 604 def initialize(data = nil) if( data == nil ) super(383) else super(383, data) end end |