Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the asynchronous notifications example so it compiles #583

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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
Loading