Example usage for org.springframework.messaging.simp.broker BrokerAvailabilityEvent isBrokerAvailable

List of usage examples for org.springframework.messaging.simp.broker BrokerAvailabilityEvent isBrokerAvailable

Introduction

In this page you can find the example usage for org.springframework.messaging.simp.broker BrokerAvailabilityEvent isBrokerAvailable.

Prototype

public boolean isBrokerAvailable() 

Source Link

Usage

From source file:ch.rasc.s4ws.portfolio.service.QuoteService.java

@Override
public void onApplicationEvent(BrokerAvailabilityEvent event) {
    this.brokerAvailable.set(event.isBrokerAvailable());
}