Package groovyx.gpars.remote.message

Examples of groovyx.gpars.remote.message.RemoteDataflowVariableRequestMsg


     * @param port the the port of remote host
     * @param name the name under which variable was published
     * @return promise of {@link groovyx.gpars.dataflow.DataflowVariable}
     */
    public Promise<DataflowVariable> getVariable(String host, int port, String name) {
        return getPromise(remoteVariables, name, host, port, new RemoteDataflowVariableRequestMsg(this.getId(), name));
    }
View Full Code Here

TOP

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

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.