@PublicEvolving public interface BoundedMultiInput
NOTE: Classes should not implement both BoundedOneInput
and BoundedMultiInput
at the same time!
BoundedOneInput
Modifier and Type | Method and Description |
---|---|
void |
endInput(int inputId)
It is notified that no more data will arrive from the input identified by the
inputId . |
void endInput(int inputId) throws Exception
inputId
. The inputId
is numbered starting from 1, and `1` indicates the first input.
WARNING: It is not safe to use this method to commit any transactions or other side
effects! You can use this method to e.g. flush data buffered for the given input or implement
an ordered reading from multiple inputs via InputSelectable
.
Exception
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.