example/basic_extensions.rb in rflow-1.0.0a3 vs example/basic_extensions.rb in rflow-1.0.0a4
- old
+ new
@@ -28,16 +28,5 @@
f.flush
f.flock(File::LOCK_UN)
end
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