Package com.rpl.rama.ops
Interface OutputCollector
- All Known Implementing Classes:
MockOutputCollector
public interface OutputCollector
Interface for emitting results from custom
RamaOperation
implementations-
Method Summary
Modifier and TypeMethodDescriptionvoid
Emit any number of fields to the default output stream.void
emitStream
(String streamName, Object... output) Emit any number of fields to a named output stream.
-
Method Details
-
emit
Emit any number of fields to the default output stream. This emit can be captured withBlock.Out.out(String...)
- Parameters:
output
- Output fields
-
emitStream
Emit any number of fields to a named output stream. This emit can be captured withBlock.MultiOutImpl.outStream(String, String, String...)
- Parameters:
streamName
- Name of output streamoutput
- Output fields
-