Class: Quickfix::DataDictionary
- Inherits:
-
Object
- Object
- Quickfix::DataDictionary
- Defined in:
- lib/quickfix_ruby.rb
Instance Method Summary collapse
- #getFieldName(field) ⇒ Object
- #getFieldTag(field) ⇒ Object
- #getGroup(msgType, group) ⇒ Object
- #getValueName(field, value) ⇒ Object
Instance Method Details
#getFieldName(field) ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/quickfix_ruby.rb', line 11 def getFieldName( field ) name = String.new if( _getFieldName(field, name) ) return name else return nil end end |
#getFieldTag(field) ⇒ Object
29 30 31 32 |
# File 'lib/quickfix_ruby.rb', line 29 def getFieldTag( field ) tag = 0 return _getFieldTag(field, tag) end |
#getGroup(msgType, group) ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/quickfix_ruby.rb', line 34 def getGroup( msgType, group ) delim = 0 dictionary = Quickfix::DataDictionary.new delim = _getGroup( msgType, group, delim, dictionary ) return nil if delim == nil return [delim, dictionary] end |
#getValueName(field, value) ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'lib/quickfix_ruby.rb', line 20 def getValueName( field, value ) name = String.new if( _getValueName(field, value, name) ) return name else return nil end end |