Example usage for org.springframework.messaging MessageHandler interface-usage

List of usage examples for org.springframework.messaging MessageHandler interface-usage

Introduction

In this page you can find the example usage for org.springframework.messaging MessageHandler interface-usage.

Usage

From source file ch.rasc.wampspring.broker.SimpleBrokerMessageHandler.java

/**
 * @author Rossen Stoyanchev
 * @author Ralph Schaer
 */
public class SimpleBrokerMessageHandler implements MessageHandler, SmartLifecycle {

From source file ch.rasc.wampspring.method.WampAnnotationMethodMessageHandler.java

/**
 * Internal class that is responsible for calling methods that are annotated with
 * {@link WampCallListener}, {@link WampPublishListener}, {@link WampSubscribeListener} or
 * {@link WampUnsubscribeListener}
 *
 * <p>

From source file org.springframework.boot.actuate.metrics.writer.MetricWriterMessageHandler.java

/**
 * A {@link MessageHandler} that updates {@link Metric} values through a
 * {@link MetricWriter}.
 *
 * @author Dave Syer
 * @see MessageChannelMetricWriter

From source file org.springframework.messaging.handler.invocation.AbstractMethodMessageHandler.java

/**
 * Abstract base class for HandlerMethod-based message handling. Provides most of
 * the logic required to discover handler methods at startup, find a matching handler
 * method at runtime for a given message and invoke it.
 *
 * <p>Also supports discovering and invoking exception handling methods to process

From source file org.springframework.messaging.handler.method.AbstractMethodMessageHandler.java

/**
 * Abstract base class for HandlerMethod-based message handling. Provides most of
 * the logic required to discover handler methods at startup, find a matching handler
 * method at runtime for a given message and invoke it.
 * <p>
 * Also supports discovering and invoking exception handling methods to process

From source file org.springframework.messaging.handler.websocket.SubProtocolWebSocketHandler.java

/**
 * A {@link WebSocketHandler} that delegates messages to a {@link SubProtocolHandler}
 * based on the sub-protocol value requested by the client through the
 * {@code Sec-WebSocket-Protocol} request header A default handler can also be configured
 * to use if the client does not request a specific sub-protocol.
 *

From source file org.springframework.messaging.simp.broker.AbstractBrokerMessageHandler.java

/**
 * Abstract base class for a {@link MessageHandler} that broker messages to
 * registered subscribers.
 *
 * @author Rossen Stoyanchev
 * @since 4.0

From source file org.springframework.messaging.simp.handler.AbstractBrokerMessageHandler.java

/**
 *
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public abstract class AbstractBrokerMessageHandler

From source file org.springframework.messaging.simp.handler.AnnotationMethodMessageHandler.java

/**
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public class AnnotationMethodMessageHandler implements MessageHandler, ApplicationContextAware, InitializingBean {

From source file org.springframework.messaging.simp.handler.SimpleBrokerMessageHandler.java

/**
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public class SimpleBrokerMessageHandler implements MessageHandler {