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

org.nustaq.kontraktor.remoting.base.Reconnect Maven / Gradle / Ivy

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