|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjavax.websocket.Endpoint
public abstract class Endpoint
The Web Socket Endpoint represents an object that can handle a web socket conversations. When deployed as a server endpoint, that is to say, the endpoint is registered to a URL, the server instantiates a new endpoint instance for each client connection. If deployed as a client, the endpoint will be instantiated once per single connection to the server. If the endpoint is a server which will cater to multiple clients, each endpoint instance corresponding to each active client is called by no more than one thread at a time. This means that when implementing/overriding the methods of Endpoint, the developer is guaranteed that there will be at most one thread in each endpoint instance.
| Constructor Summary | |
|---|---|
Endpoint()
|
|
| Method Summary | |
|---|---|
abstract EndpointConfiguration |
getEndpointConfiguration()
Developers must provide an EndpointConfiguration so that the container it is deployed in can configure it. |
void |
onClose(CloseReason closeReason)
This method is called when the session with the client is terminated. |
void |
onError(Throwable thr)
Developers may implement this method when the web socket session creates some kind of error that is not modeled in the web socket protocol. |
abstract void |
onOpen(Session session)
Developers must implement this method to be notified when a new conversation has just begun. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Endpoint()
| Method Detail |
|---|
public abstract EndpointConfiguration getEndpointConfiguration()
public abstract void onOpen(Session session)
session - the session that has just been activated.public void onClose(CloseReason closeReason)
closeReason - the reason the session was closed.public void onError(Throwable thr)
thr - the throwable representing the problem.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||