Class: Quickfix::ClientID

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

Returns a new instance of ClientID.



1982
1983
1984
1985
1986
1987
1988
# File 'lib/quickfix_fields.rb', line 1982

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

Class Method Details

.fieldObject



1979
1980
1981
# File 'lib/quickfix_fields.rb', line 1979

def ClientID.field
	return 109
end