Good day,

builder.setSpout("SpoutTuple", new Spout(), 1);
builder.setBolt("ExecutorBolt", new Bolt(parameter),
1).shuffleGrouping("SpoutTuple");

Is it possible to sent tuple as parameter for next bolt?
How should I implement it in storm topology using Java? I mean how to write
the code in storm topology refer to above coding.

Reply via email to