Interface SourceTableCollector
-
public interface SourceTableCollector
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinsert(io.github.punchplatform.api.punchline.Out out, List<Object> values, Object ctx)Insert a new row into an output.voidinsert(List<io.github.punchplatform.api.punchline.Out> out, List<Object> values, Object ctx)Insert a new row into several output.
-
-
-
Method Detail
-
insert
void insert(io.github.punchplatform.api.punchline.Out out, List<Object> values, Object ctx)Insert a new row into an output. This method can be used only by sources.- Parameters:
out- the out configurationvalues- the row valuesctx- an optional object to be returned as part of the ack or fail callback.
-
insert
void insert(List<io.github.punchplatform.api.punchline.Out> out, List<Object> values, Object ctx)
Insert a new row into several output. This method can be used only by sources.- Parameters:
out- the out configurationvalues- the row valuesctx- an optional object to be returned as part of the ack or fail callback.
-
-