Class ByteArrayDecoder
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.decoders.AbstractDecoder
-
- org.eclipse.jetty.websocket.jsr356.decoders.ByteArrayDecoder
-
- All Implemented Interfaces:
javax.websocket.Decoder
,javax.websocket.Decoder.Binary<byte[]>
public class ByteArrayDecoder extends AbstractDecoder implements javax.websocket.Decoder.Binary<byte[]>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.websocket.Decoder
javax.websocket.Decoder.Binary<T extends java.lang.Object>, javax.websocket.Decoder.BinaryStream<T extends java.lang.Object>, javax.websocket.Decoder.Text<T extends java.lang.Object>, javax.websocket.Decoder.TextStream<T extends java.lang.Object>
-
-
Field Summary
Fields Modifier and Type Field Description static ByteArrayDecoder
INSTANCE
-
Constructor Summary
Constructors Constructor Description ByteArrayDecoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
decode(java.nio.ByteBuffer bytes)
boolean
willDecode(java.nio.ByteBuffer bytes)
-
Methods inherited from class org.eclipse.jetty.websocket.jsr356.decoders.AbstractDecoder
destroy, init
-
-
-
-
Field Detail
-
INSTANCE
public static final ByteArrayDecoder INSTANCE
-
-
Method Detail
-
decode
public byte[] decode(java.nio.ByteBuffer bytes) throws javax.websocket.DecodeException
- Specified by:
decode
in interfacejavax.websocket.Decoder.Binary<byte[]>
- Throws:
javax.websocket.DecodeException
-
willDecode
public boolean willDecode(java.nio.ByteBuffer bytes)
- Specified by:
willDecode
in interfacejavax.websocket.Decoder.Binary<byte[]>
-
-