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

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

Introduction

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

Usage

From source file org.springframework.web.socket.server.support.WebSocketHttpRequestHandler.java

/**
 * A {@link HttpRequestHandler} for processing WebSocket handshake requests.
 *
 * <p>This is the main class to use when configuring a server WebSocket at a specific URL.
 * It is a very thin wrapper around a {@link WebSocketHandler} and a {@link HandshakeHandler},
 * also adapting the {@link HttpServletRequest} and {@link HttpServletResponse} to

From source file org.springframework.web.socket.sockjs.client.SockJsClient.java

/**
 * A SockJS implementation of
 * {@link org.springframework.web.socket.client.WebSocketClient WebSocketClient}
 * with fallback alternatives that simulate a WebSocket interaction through plain
 * HTTP streaming and long polling techniques..
 *

From source file org.springframework.web.socket.sockjs.client.WebSocketTransport.java

/**
 * A SockJS {@link Transport} that uses a
 * {@link org.springframework.web.socket.client.WebSocketClient WebSocketClient}.
 *
 * @author Rossen Stoyanchev
 * @since 4.1

From source file org.springframework.xd.dirt.plugins.job.ModuleJobLauncher.java

/**
 * Executes all jobs defined within a given stream once the context has been started. This really should be replaced
 * once we have the concept of triggers built in.
 *
 * @author Michael Minella
 * @author Gunnar Hillert

From source file org.springframework.xd.extension.process.ShellCommandProcessor.java

/**
 * Creates a process to run a shell command and communicate with it using String payloads over stdin and stdout.
 *
 * @author David Turanski
 */
public class ShellCommandProcessor implements Lifecycle, InitializingBean {

From source file org.springframework.yarn.config.annotation.SpringYarnAnnotationPostProcessor.java

/**
 * A {@link BeanPostProcessor} implementation that processes method-level
 * annotations such as @{@link OnContainerStart}.
 *
 * @author Mark Fisher
 * @author Marius Bogoevici