Skip to content

Commit

Permalink
Update the asynchronous notifications example so it compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jakzal committed Oct 27, 2023
1 parent dbf9490 commit 183c052
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions documentation/src/docs/examples/async-notify/simple.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@

PGConnection connection = DriverManager.getConnection(url).unwrap(PGConnection.class); // <1>
connection.addListener(new PGNotificationListener() { // <2>
connection.addNotificationListener(new PGNotificationListener() { // <2>

void notification(int processId, String channelName, String payload) {
@Override
public void notification(int processId, String channelName, String payload) {
System.out.println("Received Notification: " + processId + ", " + channelName + ", " + payload); // <3>
}

void closed() { // <4>
@Override
public void closed() { // <4>
// initiate reconnection & restart listening
}

Expand Down

0 comments on commit 183c052

Please sign in to comment.