Class: Quickfix::SessionStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SessionStatus

Returns a new instance of SessionStatus.



9860
9861
9862
9863
9864
9865
9866
# File 'lib/quickfix_fields.rb', line 9860

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

Class Method Details

.fieldObject



9857
9858
9859
# File 'lib/quickfix_fields.rb', line 9857

def SessionStatus.field
  return 1409
end