Class: Quickfix::StreamDataProvider

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StreamDataProvider

Returns a new instance of StreamDataProvider.



45649
45650
45651
45652
45653
45654
45655
# File 'lib/quickfix_fields.rb', line 45649

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