All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zendesk.maxwell.recovery.RecoveryInfo Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
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