Package org.springframework.messaging.simp.broker

Examples of org.springframework.messaging.simp.broker.BrokerAvailabilityEvent


        this.eventQueue.add((BrokerAvailabilityEvent) event);
      }
    }

    public void expectBrokerAvailabilityEvent(boolean isBrokerAvailable) throws InterruptedException {
      BrokerAvailabilityEvent event = this.eventQueue.poll(20000, TimeUnit.MILLISECONDS);
      assertNotNull("Times out waiting for BrokerAvailabilityEvent[" + isBrokerAvailable + "]", event);
      assertEquals(isBrokerAvailable, event.isBrokerAvailable());
    }
View Full Code Here

TOP

Related Classes of org.springframework.messaging.simp.broker.BrokerAvailabilityEvent

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.