Package com.microsoft.windowsazure.services.queue.models

Examples of com.microsoft.windowsazure.services.queue.models.CreateQueueOptions


        builder.put(serviceProperties);
    }

    @Override
    public void createQueue(String queue) throws ServiceException {
        createQueue(queue, new CreateQueueOptions());

    }
View Full Code Here


    @Test
    public void createQueueWithOptionsWorks() throws Exception {
        // Arrange

        // Act
        service.createQueue(CREATABLE_QUEUE_2, new CreateQueueOptions()
                .addMetadata("foo", "bar").addMetadata("test", "blah"));
        GetQueueMetadataResult result = service
                .getQueueMetadata(CREATABLE_QUEUE_2);
        service.deleteQueue(CREATABLE_QUEUE_2);
View Full Code Here

TOP

Related Classes of com.microsoft.windowsazure.services.queue.models.CreateQueueOptions

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.