public class AnnotatedEndpointConnectionManager extends ConnectionManagerSupport implements BeanFactoryAware
ClientEndpoint
-annotated endpoint, connects to a
WebSocket server through the ConnectionManagerSupport.start()
and ConnectionManagerSupport.stop()
methods.
If ConnectionManagerSupport.setAutoStartup(boolean)
is set to true
this will be
done automatically when the Spring ApplicationContext is refreshed.logger
Constructor and Description |
---|
AnnotatedEndpointConnectionManager(Class<?> endpointClass,
String uriTemplate,
Object... uriVariables) |
AnnotatedEndpointConnectionManager(Object endpoint,
String uriTemplate,
Object... uriVariables) |
Modifier and Type | Method and Description |
---|---|
protected void |
closeConnection() |
TaskExecutor |
getTaskExecutor()
Return the configured
TaskExecutor . |
WebSocketContainer |
getWebSocketContainer() |
protected boolean |
isConnected() |
protected void |
openConnection() |
void |
setBeanFactory(BeanFactory beanFactory)
Callback that supplies the owning factory to a bean instance.
|
void |
setTaskExecutor(TaskExecutor taskExecutor)
Set a
TaskExecutor to use to open the connection. |
void |
setWebSocketContainer(WebSocketContainer webSocketContainer) |
getPhase, getUri, isAutoStartup, isRunning, setAutoStartup, setPhase, start, startInternal, stop, stop, stopInternal
public AnnotatedEndpointConnectionManager(Object endpoint, String uriTemplate, Object... uriVariables)
public void setWebSocketContainer(WebSocketContainer webSocketContainer)
public WebSocketContainer getWebSocketContainer()
public void setBeanFactory(BeanFactory beanFactory) throws BeansException
BeanFactoryAware
Invoked after the population of normal bean properties
but before an initialization callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.
setBeanFactory
in interface BeanFactoryAware
beanFactory
- owning BeanFactory (never null
).
The bean can immediately call methods on the factory.BeansException
- in case of initialization errorsBeanInitializationException
public void setTaskExecutor(TaskExecutor taskExecutor)
TaskExecutor
to use to open the connection.
By default SimpleAsyncTaskExecutor
is used.public TaskExecutor getTaskExecutor()
TaskExecutor
.protected void openConnection()
openConnection
in class ConnectionManagerSupport
protected void closeConnection() throws Exception
closeConnection
in class ConnectionManagerSupport
Exception
protected boolean isConnected()
isConnected
in class ConnectionManagerSupport