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

org.jgroups.blocks.cs.Client Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.jgroups.blocks.cs;

import org.jgroups.Address;

import java.nio.ByteBuffer;

/**
 * Defines common operations for clients (TCP or NIO)
 * @author Bela Ban
 * @since  3.6.5
 */
public interface Client {
    Address localAddress();

    Address remoteAddress();

    boolean isOpen();

    boolean isConnected();

    /** Sends data to the remote server. The server's address must have been set before. */
    void send(byte[] data, int offset, int length) throws Exception;

    /** Sends data to the remote server.  The server's address must have been set before. */
    void send(ByteBuffer data) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy