package stopBroker;

import omq.Remote;
import omq.client.annotation.AsyncMethod;
import omq.client.annotation.RemoteInterface;

@RemoteInterface
public interface BrokerKiller extends Remote {
	@AsyncMethod
	public void killServerBroker() throws Exception;
}
