Class: Quickfix::MessageEventSource

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MessageEventSource

Returns a new instance of MessageEventSource.



13578
13579
13580
13581
13582
13583
13584
# File 'lib/quickfix_fields.rb', line 13578

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