Class: Quickfix::ApplTotalMessageCount

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

Returns a new instance of ApplTotalMessageCount.



18505
18506
18507
18508
18509
18510
18511
# File 'lib/quickfix_fields.rb', line 18505

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

Class Method Details

.fieldObject



18502
18503
18504
# File 'lib/quickfix_fields.rb', line 18502

def ApplTotalMessageCount.field
  return 1349
end