Example usage for org.springframework.context SmartLifecycle interface-usage

List of usage examples for org.springframework.context SmartLifecycle interface-usage

Introduction

In this page you can find the example usage for org.springframework.context SmartLifecycle interface-usage.

Usage

From source file org.springframework.kafka.config.StreamsBuilderFactoryBean.java

/**
 * An {@link AbstractFactoryBean} for the {@link StreamsBuilder} instance
 * and lifecycle control for the internal {@link KafkaStreams} instance.
 *
 * <p>A fine grained control on {@link KafkaStreams} can be achieved by
 * {@link KafkaStreamsCustomizer}s</p>

From source file org.springframework.kafka.listener.AbstractMessageListenerContainer.java

/**
 * The base implementation for the {@link MessageListenerContainer}.
 *
 * @param <K> the key type.
 * @param <V> the value type.
 *

From source file org.springframework.messaging.simp.annotation.support.SimpAnnotationMethodMessageHandler.java

/**
 * A handler for messages delegating to {@link MessageMapping @MessageMapping}
 * and {@link SubscribeMapping @SubscribeMapping} annotated methods.
 *
 * <p>Supports Ant-style path patterns with template variables.
 *

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.stomp.StompBrokerRelayMessageHandler.java

/**
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public class StompBrokerRelayMessageHandler implements MessageHandler, SmartLifecycle {

From source file org.springframework.messaging.simp.user.UserDestinationMessageHandler.java

/**
 * {@code MessageHandler} with support for "user" destinations.
 *
 * <p>Listens for messages with "user" destinations, translates their destination
 * to actual target destinations unique to the active session(s) of a user, and
 * then sends the resolved messages to the broker channel to be delivered.

From source file org.springframework.remoting.jbr.JbossRemotingExporter.java

/**
 * <P> Exporter that delegates to the JBoss Remoting (http://community.jboss.org/en/jbossremoting) project to handle the RPC support. <p/>
 *
 * @author Josh Long
 * @see org.springframework.remoting.rmi.RmiServiceExporter
 */

From source file org.springframework.remoting.messagepack.MessagePackExporter.java

/**
 * {@link RemoteInvocationBasedExporter} based on the {@link org.msgpack.MessagePack} RPC framework.
 *
 * @author Josh Long
 * @see org.springframework.remoting.caucho.HessianExporter
 */

From source file org.springframework.statemachine.config.common.annotation.configuration.AutowireBeanFactoryObjectPostProcessor.java

/**
 * Post processor handling lifecycle methods of
 * POJOs created from builder/configurer.
 *
 * @author Janne Valkealahti
 *