Class: Quickfix::SessionStatus

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

Returns a new instance of SessionStatus.



916
917
918
919
920
921
922
# File 'lib/quickfix_fields.rb', line 916

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

Class Method Details

.fieldObject



913
914
915
# File 'lib/quickfix_fields.rb', line 913

def SessionStatus.field
	return 1409
end