redstorm/examples/simple/exclamation_bolt.rb

11 lines
233 B
Ruby

require 'red_storm'
module RedStorm
module Examples
class ExclamationBolt < RedStorm::SimpleBolt
output_fields :word
on_receive(:ack => true, :anchor => true) {|tuple| tuple.getString(0) + "!!!"}
end
end
end