Class: Quickfix::MaxMessageSize

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

Instance Method Summary collapse

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