Class ByteArrayDecoder
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.decoders.AbstractDecoder
-
- org.eclipse.jetty.websocket.jsr356.decoders.ByteArrayDecoder
-
- All Implemented Interfaces:
Decoder,Decoder.Binary<byte[]>
public class ByteArrayDecoder extends AbstractDecoder implements Decoder.Binary<byte[]>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.websocket.Decoder
Decoder.Binary<T extends Object>, Decoder.BinaryStream<T extends Object>, Decoder.Text<T extends Object>, Decoder.TextStream<T extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description static ByteArrayDecoderINSTANCE
-
Constructor Summary
Constructors Constructor Description ByteArrayDecoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]decode(ByteBuffer bytes)booleanwillDecode(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(ByteBuffer bytes) throws DecodeException
- Specified by:
decodein interfaceDecoder.Binary<byte[]>- Throws:
DecodeException
-
willDecode
public boolean willDecode(ByteBuffer bytes)
- Specified by:
willDecodein interfaceDecoder.Binary<byte[]>
-
-