Interface KastCollector
-
public interface KastCollector
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Closes the collector.voidcollect(KastRow kRow)Emits a record.
-
-
-
Method Detail
-
collect
void collect(KastRow kRow)
Emits a record.- Parameters:
kRow- The record to collect.
-
close
void close()
Closes the collector. If any data was buffered, that data will be flushed.
-
-