Class: Quickfix::LastMsgSeqNumProcessed

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastMsgSeqNumProcessed

Returns a new instance of LastMsgSeqNumProcessed.



552
553
554
555
556
557
558
# File 'lib/quickfix_fields.rb', line 552

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