Skip to content
Open
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
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