Package com.blacklocus.qs.worker

Examples of com.blacklocus.qs.worker.QSWorker


    }

    @Override
    public Object process(TaskHandle taskHandle) throws Exception {
        QSTaskModel task = taskHandle.task;
        QSWorker worker = workers.get(task.handler);
        if (worker == null) {
            throw new RuntimeException("No worker available for handler identifier: " + task.handler);
        }

        return worker.undertake(new MapConfiguration(task.params), new QSTaskLoggerDelegate(task));
    }
View Full Code Here

TOP

Related Classes of com.blacklocus.qs.worker.QSWorker

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.