package io.vertx.sqlclient.impl;
import java.util.Objects;
public class Notification {
private final int processId;
private final String channel;
private final String payload;
public Notification(int processId, String channel, String payload) {
this.processId = processId;
this.channel = channel;
this.payload = payload;
}
public int getProcessId() {
return processId;
}
public String getChannel() {
return channel;
}
public String getPayload() {
return payload;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Notification that = (Notification) o;
return processId == that.processId &&
Objects.equals(channel, that.channel) &&
Objects.equals(payload, that.payload);
}
@Override
public int hashCode() {
return Objects.hash(processId, channel, payload);
}
@Override
public String toString() {
return "NotificationResponse{" +
"processId=" + processId +
", channel='" + channel + '\'' +
", payload='" + payload + '\'' +
'}';
}
}