Class: Quickfix::LockType

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

Returns a new instance of LockType.



23627
23628
23629
23630
23631
23632
23633
# File 'lib/quickfix_fields.rb', line 23627

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

Class Method Details

.fieldObject



23624
23625
23626
# File 'lib/quickfix_fields.rb', line 23624

def LockType.field
  return 1807
end