Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ public interface PgChannel extends ReadStream<String> {
@Override
PgChannel endHandler(Handler<Void> endHandler);

/**
* Inherited from {@link ReadStream#exceptionHandler(Handler)} but this one is a no-op.
*
* @return a reference to this, so the API can be used fluently
*/
@Override
PgChannel exceptionHandler(Handler<Throwable> handler);

Expand Down