javax.websocket
Interface MessageHandler.Basic<T>

All Superinterfaces:
MessageHandler
Enclosing interface:
MessageHandler

public static interface MessageHandler.Basic<T>
extends MessageHandler

This kind of handler is notified by the container on arrival of a complete message. If the message is received in parts, the container buffers it until it is has been fully received before this method is called. The allowed types for T are String, ByteBuffer, byte[], Reader, InputStream, PongMessage, and any developer object for which there is a corresponding Decoder configured.

Since:
DRAFT 002

Nested Class Summary
 
Nested classes/interfaces inherited from interface javax.websocket.MessageHandler
MessageHandler.Async<T>, MessageHandler.Basic<T>
 
Method Summary
 void onMessage(T message)
          Called when the message has been fully received.
 

Method Detail

onMessage

void onMessage(T message)
Called when the message has been fully received.

Parameters:
message - the message data.



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