We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I think unary RPCs are used quite often, then in the service implementation we have to write 2 lines:
responseObserver.onNext(result); responseObserver.onCompleted();
It seems logical to introduce a default method:
default void complete(V value) { onNext(value); onCompleted(); }
WDYT?