Sha256: c71b89aac15770b06e49cb8b3e3b9327e11cf90ad56003cee17ae9937fa8d9b5
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# This will/should bring in available components and their schemas require 'rflow/components' require 'rflow/message' # Example of creating and registering a data extension module SimpleDataExtension # Use this to default/verify the data in data_object def self.extended(base_data) base_data.data_object end def my_method; end end RFlow::Configuration.add_available_data_extension('RFlow::Message::Data::Integer', SimpleDataExtension) class RFlow::Components::FileOutput < RFlow::Component attr_accessor :output_file_path, :output_file input_port :in def configure!(config) self.output_file_path = config['output_file_path'] self.output_file = File.new output_file_path, 'w+' end def process_message(input_port, input_port_key, connection, message) output_file.puts message.data.data_object.inspect output_file.flush end def cleanup output_file.close end end class SimpleComponent < RFlow::Component input_port :in output_port :out def configure!(config); end def run!; end def process_message(input_port, input_port_key, connection, message); end def shutdown!; end def cleanup!; end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rflow-1.0.0a2 | example/basic_extensions.rb |