public static interface Operator.Receiver
| Modifier and Type | Method and Description |
|---|---|
void |
completed()
Used to indicate that no more data will ever come.
|
Operator.Signal |
push(RowsAndColumns rac)
Used to push data.
|
Operator.Signal push(RowsAndColumns rac)
rac - RowsAndColumns of datavoid completed()
Closeable.close() method. Namely, there is no guarantee that this method
will be called if execution halts due to an exception from push.
It is acceptable for an implementation to eagerly close resources from this method, but it is not acceptable for this method to be the sole method of managing the lifecycle of resources held by the Operator.
Copyright © 2011–2023 The Apache Software Foundation. All rights reserved.