redstorm/examples/dsl/exclamation_bolt.rb

11 lines
259 B
Ruby
Raw Normal View History

2013-06-17 19:08:09 +00:00
require 'red_storm'
module RedStorm
module Examples
class ExclamationBolt < DSL::Bolt
output_fields :word
on_receive(:ack => true, :anchor => true) {|tuple| tuple[0] + "!!!"} # tuple[:word] or tuple["word"] are also valid
end
end
end