Uses of Interface
javax.websocket.MessageHandler

Packages that use MessageHandler
javax.websocket   
 

Uses of MessageHandler in javax.websocket
 

Subinterfaces of MessageHandler in javax.websocket
static interface MessageHandler.Async<T>
          This kind of handler is notified by the implementation as it becomes ready to deliver parts of a whole message.
static interface MessageHandler.Basic<T>
          This kind of handler is notified by the container on arrival of a complete message.
 

Methods in javax.websocket that return types with arguments of type MessageHandler
 Set<MessageHandler> Session.getMessageHandlers()
          Return an unmodifiable copy of the set of MessageHandlers for this Session.
 

Methods in javax.websocket with parameters of type MessageHandler
 void Session.addMessageHandler(MessageHandler handler)
          Register to handle to incoming messages in this conversation.
 void Session.removeMessageHandler(MessageHandler handler)
          Remove the given MessageHandler from the set belonging to this session.
 




Copyright © 2012-2013 Oracle and/or its affiliates. All rights reserved.