Package com.mongodb
Class LazyDBDecoder
java.lang.Object
org.bson.LazyBSONDecoder
com.mongodb.LazyDBDecoder
- All Implemented Interfaces:
DBDecoder
,BSONDecoder
A decoder for
LazyDBObject
instances.-
Field Summary
Modifier and TypeFieldDescriptionstatic final DBDecoderFactory
TheDBDecoderFactory
forLazyDBDecoder
instances. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondecode
(byte[] bytes, DBCollection collection) Decode a single DBObject belonging to the given collection from the given array of bytes.decode
(InputStream input, DBCollection collection) Decode a single DBObject belonging to the given collection from the given input stream.getDBCallback
(DBCollection collection) Get a callback for the given collection.Methods inherited from class org.bson.LazyBSONDecoder
decode, decode, readObject
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.bson.BSONDecoder
decode, decode, readObject
-
Field Details
-
FACTORY
TheDBDecoderFactory
forLazyDBDecoder
instances.
-
-
Constructor Details
-
LazyDBDecoder
public LazyDBDecoder()
-
-
Method Details
-
getDBCallback
Description copied from interface:DBDecoder
Get a callback for the given collection.- Specified by:
getDBCallback
in interfaceDBDecoder
- Parameters:
collection
- the collection- Returns:
- the callback
-
readObject
- Specified by:
readObject
in interfaceBSONDecoder
- Overrides:
readObject
in classLazyBSONDecoder
- Throws:
IOException
-
decode
Description copied from interface:DBDecoder
Decode a single DBObject belonging to the given collection from the given input stream.- Specified by:
decode
in interfaceDBDecoder
- Parameters:
input
- the input streamcollection
- the collection- Returns:
- the DBObject
- Throws:
IOException
- may throw an exception while decoding from theInputStream
-
decode
Description copied from interface:DBDecoder
Decode a single DBObject belonging to the given collection from the given array of bytes.
-