Examples of BrokerAvailabilityEvent


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
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.