org.nustaq.kontraktor.remoting.base.Reconnect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kontraktor Show documentation
Show all versions of kontraktor Show documentation
a light weight, efficient actor lib
package org.nustaq.kontraktor.remoting.base;
import java.io.Serializable;
public class Reconnect implements Serializable {
String sessionId;
long remoteRefId;
public Reconnect(String sessionId, long remoteRefId) {
this.sessionId = sessionId;
this.remoteRefId = remoteRefId;
}
public long getRemoteRefId() {
return remoteRefId;
}
public String getSessionId() {
return sessionId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy