You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#4626 is going to introduce OperatorInputStream which is a blocking based API. This design doesn't align with our existing async Operator and BlockingOperator.
Due to the existing java's BlockignQueue and similiar API, we can't call OperatorInputStream as BlockingOperatorInputStream.
After offline discussion with @tisonkun, we decided to move the naming pattern that use Operator for blocking operations and AsyncOperator for async operations.
The text was updated successfully, but these errors were encountered:
#4626 is going to introduce
OperatorInputStream
which is a blocking based API. This design doesn't align with our existing asyncOperator
andBlockingOperator
.Due to the existing java's
BlockignQueue
and similiar API, we can't callOperatorInputStream
asBlockingOperatorInputStream
.After offline discussion with @tisonkun, we decided to move the naming pattern that use
Operator
for blocking operations andAsyncOperator
for async operations.The text was updated successfully, but these errors were encountered: