* @param port the port of remote host
* @param name the name under which Agent was published
* @return promise of {@link groovyx.gpars.agent.remote.RemoteAgent}
*/
public Promise<RemoteAgent> get(String host, int port, String name) {
return getPromise(remoteAgents, name, host, port, new RemoteAgentRequestMsg(this.getId(), name));
}