Skip to content

Commit

Permalink
changing style on purpose to check if spotless plugin picks it up at
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Jul 11, 2024
1 parent 207993b commit ca2a4a0
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@
import io.grpc.stub.StreamObserver;

/**
* The LiveStreamObserver interface augments the StreamObserver interface with the notify() method thereby
* allowing a caller to pass a block to the observer of a different type than the StreamObserver. In this way,
* the implementation of this interface can receive and process inbound messages with different types from
* the producer and response messages from the consumer.
* The LiveStreamObserver interface augments the StreamObserver interface with the notify() method
* thereby allowing a caller to pass a block to the observer of a different type than the
* StreamObserver. In this way, the implementation of this interface can receive and process inbound
* messages with different types from the producer and response messages from the consumer.
*
* @param <U> the type of the block
* @param <V> the type of the StreamObserver
*/
public interface LiveStreamObserver<U, V> extends StreamObserver<V> {
public interface LiveStreamObserver<U, V>
extends StreamObserver<V> {

/**
* Pass the block to the observer.
Expand Down

0 comments on commit ca2a4a0

Please sign in to comment.