com.github.pgasync.impl.message.NotificationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postgres-async-driver Show documentation
Show all versions of postgres-async-driver Show documentation
Asynchronous PostgreSQL Java driver
The newest version!
package com.github.pgasync.impl.message;
import lombok.Value;
import lombok.experimental.Accessors;
/**
* @author Antti Laisi
*/
@Value
@Accessors(fluent = true)
public class NotificationResponse implements Message {
int backend;
String channel;
String payload;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy