Class: Quickfix::EmailThreadID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EmailThreadID

Returns a new instance of EmailThreadID.



2541
2542
2543
2544
2545
2546
2547
# File 'lib/quickfix_fields.rb', line 2541

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