Package org.apache.qpid.disttest.client

Examples of org.apache.qpid.disttest.client.ClientState


        return _session.createQueue(clientQueueName);
    }

    private static void assertState(Client client, ClientState expectedState)
    {
        ClientState clientState = client.getState();
        assertEquals("Client should be in state: " + expectedState + " but is in state " + clientState, expectedState, clientState);
    }
View Full Code Here

TOP

Related Classes of org.apache.qpid.disttest.client.ClientState

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.