Class: Quickfix::EmailThreadID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



2538
2539
2540
# File 'lib/quickfix_fields.rb', line 2538

def EmailThreadID.field
  return 164
end