Slide 384
Slide 384 text
try (Connection cn = new org.postgresql.Driver().connect(url, properties)) {
cn.createStatement().execute(“LISTEN ‘pedidos-finalizados’");
for (;;) {
PGNotification[] ns = ((PGConnection) cn).getNotifications(0);
if (ns != null) {
for (PGNotification n : ns) {
System.out.println("pid=%s, event=%s, payload=%s".formatted(
n.getPID(), n.getName(), n.getParameter()
));
// invoca logica de negocio
}
}
break;
}
}