Package org.b3log.latke.taskqueue

Examples of org.b3log.latke.taskqueue.Queue


    @Override
    public Queue getQueue(final String queueName) {
        final com.google.appengine.api.taskqueue.Queue queue = QueueFactory.getQueue(queueName);

        return new Queue() {

            @Override
            public TaskHandle add(final Task task) {
                final TaskOptions taskOptions = TaskOptions.Builder.withTaskName(task.getName()).url(task.getURL());
                final HTTPRequestMethod requestMethod = task.getRequestMethod();
View Full Code Here

TOP

Related Classes of org.b3log.latke.taskqueue.Queue

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.