Class: Quickfix::MaxMessageSize

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

Class Method Details

.fieldObject



601
602
603
# File 'lib/quickfix_fields.rb', line 601

def MaxMessageSize.field
	return 383
end