Package common

Examples of common.Compute


    }

    @Override
    public void run() {
        try {
            final Compute comp = (Compute) Naming.lookup(URL);
            final long startTime = System.currentTimeMillis();
            LOG.info("Sending request to execute task: {}", this.task.toString());
            this.result = comp.executeTask(this.task);
            LOG.info("Execution finished in {} ms, result is: {}",
                     System.currentTimeMillis() - startTime,
                     this.result);

            for (FutureEvent futureEvent : futureEvents) {
View Full Code Here

TOP

Related Classes of common.Compute

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.