
com.zendesk.maxwell.recovery.RecoveryInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maxwell Show documentation
Show all versions of maxwell Show documentation
Maxwell's daemon. Watches mysql, outputs to JSON.
package com.zendesk.maxwell.recovery;
import com.zendesk.maxwell.replication.Position;
public class RecoveryInfo {
public Position position;
public Long serverID;
public String clientID;
public RecoveryInfo(Position position, Long serverID, String clientID) {
this.position = position;
this.serverID = serverID;
this.clientID = clientID;
}
public long getHeartbeat() {
return position.getLastHeartbeatRead();
}
public String toString() {
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy