org.rx.net.rpc.TcpClientPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.net.rpc;
import org.rx.net.transport.StatefulTcpClient;
public interface TcpClientPool {
StatefulTcpClient borrowClient();
StatefulTcpClient returnClient(StatefulTcpClient client);
}