* @param port the port of remote host
* @param name the name under which Actor was published
* @return promise of {@link groovyx.gpars.actor.remote.RemoteActor}
*/
public Promise<Actor> get(String host, int port, String name) {
return getPromise(remoteActors, name, host, port, new RemoteActorRequestMsg(this.getId(), name));
}