Package org.bson
Class BasicBSONDecoder
- java.lang.Object
-
- org.bson.BasicBSONDecoder
-
- All Implemented Interfaces:
BSONDecoder
- Direct Known Subclasses:
DefaultDBDecoder
public class BasicBSONDecoder extends java.lang.Object implements BSONDecoder
Basic implementation of BSONDecoder interface that creates BasicBSONObject instances
-
-
Constructor Summary
Constructors Constructor Description BasicBSONDecoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
decode(byte[] bytes, BSONCallback callback)
Decode a single BSON object into the given callback from the given byte array.int
decode(java.io.InputStream in, BSONCallback callback)
Decode a single BSON object into the given callback from the given input stream.BSONObject
readObject(byte[] bytes)
Read a single BSON object from the given bytes.BSONObject
readObject(java.io.InputStream in)
Read a single BSON object from the given input stream.
-
-
-
Method Detail
-
readObject
public BSONObject readObject(byte[] bytes)
Description copied from interface:BSONDecoder
Read a single BSON object from the given bytes.- Specified by:
readObject
in interfaceBSONDecoder
- Parameters:
bytes
- the bytes in BSON format- Returns:
- the BSON object for the given bytes
-
readObject
public BSONObject readObject(java.io.InputStream in) throws java.io.IOException
Description copied from interface:BSONDecoder
Read a single BSON object from the given input stream.- Specified by:
readObject
in interfaceBSONDecoder
- Parameters:
in
- the input stream in BSON format- Returns:
- the BSON object for the given bytes
- Throws:
java.io.IOException
- if there's a problem reading the object from theInputStream
-
decode
public int decode(byte[] bytes, BSONCallback callback)
Description copied from interface:BSONDecoder
Decode a single BSON object into the given callback from the given byte array.- Specified by:
decode
in interfaceBSONDecoder
- Parameters:
bytes
- the bytes in BSON formatcallback
- the callback- Returns:
- the number of bytes in the BSON object
-
decode
public int decode(java.io.InputStream in, BSONCallback callback) throws java.io.IOException
Description copied from interface:BSONDecoder
Decode a single BSON object into the given callback from the given input stream.- Specified by:
decode
in interfaceBSONDecoder
- Parameters:
in
- the input stream in BSON formatcallback
- the callback- Returns:
- the number of bytes read from the input stream
- Throws:
java.io.IOException
- if there's a problem reading from theInputStream
-
-