Class AnnotatedEndpointConnectionManager
java.lang.Object
org.springframework.web.socket.client.ConnectionManagerSupport
org.springframework.web.socket.client.standard.AnnotatedEndpointConnectionManager
- All Implemented Interfaces:
- Aware,- BeanFactoryAware,- Lifecycle,- Phased,- SmartLifecycle
public class AnnotatedEndpointConnectionManager
extends ConnectionManagerSupport
implements BeanFactoryAware
WebSocket 
connection manager that connects
 to the server via WebSocketContainer and handles the session with an
 @ClientEndpoint endpoint.- Since:
- 4.0
- Author:
- Rossen Stoyanchev
- 
Field SummaryFields inherited from class org.springframework.web.socket.client.ConnectionManagerSupportloggerFields inherited from interface org.springframework.context.SmartLifecycleDEFAULT_PHASE
- 
Constructor SummaryConstructorsConstructorDescriptionAnnotatedEndpointConnectionManager(Class<?> endpointClass, String uriTemplate, Object... uriVariables) AnnotatedEndpointConnectionManager(Object endpoint, String uriTemplate, Object... uriVariables) 
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidSubclasses implement this to close the connection.Return the configuredTaskExecutor.booleanWhether the connection is open/trueor closed/false.protected voidSubclasses implement this to actually establish the connection.voidsetBeanFactory(BeanFactory beanFactory) Callback that supplies the owning factory to a bean instance.voidsetTaskExecutor(TaskExecutor taskExecutor) Set aTaskExecutorto use to open the connection.voidsetWebSocketContainer(WebSocketContainer webSocketContainer) Methods inherited from class org.springframework.web.socket.client.ConnectionManagerSupportgetPhase, getUri, isAutoStartup, isRunning, setAutoStartup, setPhase, start, startInternal, stop, stop, stopInternal
- 
Constructor Details- 
AnnotatedEndpointConnectionManager
- 
AnnotatedEndpointConnectionManager
 
- 
- 
Method Details- 
setWebSocketContainer
- 
getWebSocketContainer
- 
setBeanFactoryDescription copied from interface:BeanFactoryAwareCallback that supplies the owning factory to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as InitializingBean.afterPropertiesSet()or a custom init-method.- Specified by:
- setBeanFactoryin interface- BeanFactoryAware
- Parameters:
- beanFactory- owning BeanFactory (never- null). The bean can immediately call methods on the factory.
- Throws:
- BeansException- in case of initialization errors
- See Also:
 
- 
setTaskExecutorSet aTaskExecutorto use to open the connection. By defaultSimpleAsyncTaskExecutoris used.
- 
getTaskExecutorReturn the configuredTaskExecutor.
- 
isConnectedpublic boolean isConnected()Description copied from class:ConnectionManagerSupportWhether the connection is open/trueor closed/false.- Specified by:
- isConnectedin class- ConnectionManagerSupport
 
- 
openConnectionprotected void openConnection()Description copied from class:ConnectionManagerSupportSubclasses implement this to actually establish the connection.- Specified by:
- openConnectionin class- ConnectionManagerSupport
 
- 
closeConnectionDescription copied from class:ConnectionManagerSupportSubclasses implement this to close the connection.- Specified by:
- closeConnectionin class- ConnectionManagerSupport
- Throws:
- Exception
 
 
-