Class: Quickfix::MsgSeqNum
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::MsgSeqNum
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ MsgSeqNum
constructor
A new instance of MsgSeqNum.
Constructor Details
#initialize(data = nil) ⇒ MsgSeqNum
Returns a new instance of MsgSeqNum.
17231 17232 17233 17234 17235 17236 17237 |
# File 'lib/quickfix_fields.rb', line 17231 def initialize(data = nil) if( data == nil ) super(34) else super(34, data) end end |
Class Method Details
.field ⇒ Object
17228 17229 17230 |
# File 'lib/quickfix_fields.rb', line 17228 def MsgSeqNum.field return 34 end |