Class MessageReader
- java.lang.Object
-
- java.io.Reader
-
- org.eclipse.jetty.websocket.core.internal.messages.MessageReader
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.lang.Readable
,MessageSink
public class MessageReader extends java.io.Reader implements MessageSink
Support class for reading a (single) WebSocket TEXT message via a Reader.In compliance to the WebSocket spec, this reader always uses the
StandardCharsets.UTF_8
.
-
-
Constructor Summary
Constructors Constructor Description MessageReader()
MessageReader(int bufferSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Frame frame, Callback callback)
Consume the frame payload to the message.void
close()
int
read(char[] cbuf, int off, int len)
-
-
-
Method Detail
-
read
public int read(char[] cbuf, int off, int len) throws java.io.IOException
- Specified by:
read
in classjava.io.Reader
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Specified by:
close
in classjava.io.Reader
- Throws:
java.io.IOException
-
accept
public void accept(Frame frame, Callback callback)
Description copied from interface:MessageSink
Consume the frame payload to the message.- Specified by:
accept
in interfaceMessageSink
- Parameters:
frame
- the frame, its payload (and fin state) to appendcallback
- the callback for how the frame was consumed
-
-