Class TextPartialMessage

java.lang.Object
org.eclipse.jetty.websocket.jsr356.messages.TextPartialMessage
All Implemented Interfaces:
MessageAppender

public class TextPartialMessage extends Object implements MessageAppender
Partial TEXT MessageAppender for MessageHandler.Partial interface
  • Field Details

  • Constructor Details

  • Method Details

    • appendFrame

      public void appendFrame(ByteBuffer payload, boolean isLast) throws IOException
      Description copied from interface: MessageAppender
      Append the frame payload to the message.
      Specified by:
      appendFrame in interface MessageAppender
      Parameters:
      payload - the frame payload to append.
      isLast - flag indicating if this is the last part of the message or not.
      Throws:
      IOException - if unable to append the frame payload
    • messageComplete

      public void messageComplete()
      Description copied from interface: MessageAppender
      Notification that message is to be considered complete.

      Any cleanup or final actions should be taken here.

      Specified by:
      messageComplete in interface MessageAppender