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

org.zbus.client.ClientPool Maven / Gradle / Ivy

The newest version!
package org.zbus.client;

import java.util.List;

import org.zbus.remoting.RemotingClient;

public interface ClientPool{
	RemotingClient borrowClient(String mq) throws Exception;
	List borrowEachClient(String mq) throws Exception;
	void returnClient(RemotingClient client) throws Exception;
	void returnClient(List clients) throws Exception;
	void invalidateClient(RemotingClient client) throws Exception;
	void destroy();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy