Package com.google.appengine.api.taskqueue

Examples of com.google.appengine.api.taskqueue.TaskOptions.removeHeader()


    }

    @Test
    public void testHeaders() {
        TaskOptions options = TaskOptions.Builder.withHeaders(Collections.<String, String>singletonMap("foo", "bar"));
        options.removeHeader("foo");
    }

    @Test
    public void testMisc() throws Exception {
        TaskOptions options = TaskOptions.Builder.withTag("tag".getBytes()).etaMillis(1000L).payload("p").url("/frc");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.