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

com.hazelcast.cluster.AbstractRemotelyProcessable Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/**
 * 
 */
package com.hazelcast.cluster;

import com.hazelcast.nio.Connection;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;

public abstract class AbstractRemotelyProcessable implements RemotelyProcessable {
    Connection conn;

    public Connection getConnection() {
        return conn;
    }

    public void setConnection(Connection conn) {
        this.conn = conn;
    }

    public void readData(DataInput in) throws IOException {
    }

    public void writeData(DataOutput out) throws IOException {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy