Package groovyx.gpars.remote.message

Examples of groovyx.gpars.remote.message.RemoteDataflowQueueRequestMsg


     * @param port the port of remote host
     * @param name the name under which queue was published
     * @return promise of {@link groovyx.gpars.dataflow.remote.RemoteDataflowQueue}
     */
    public Promise<RemoteDataflowQueue<?>> getDataflowQueue(String host, int port, String name) {
        return getPromise(remoteQueues, name, host, port, new RemoteDataflowQueueRequestMsg(this.getId(), name));
    }
View Full Code Here

TOP

Related Classes of groovyx.gpars.remote.message.RemoteDataflowQueueRequestMsg

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.