Uses of Interface
org.bson.BSONCallback
-
Packages that use BSONCallback Package Description org.bson Contains the base BSON classes. -
-
Uses of BSONCallback in org.bson
Classes in org.bson that implement BSONCallback Modifier and Type Class Description class
BasicBSONCallback
An implementation ofBsonCallback
that creates an instance of BSONObject.class
EmptyBSONCallback
Convenience implementation of BSONCallback that throwsUnsupportedOperationException
for all methods.class
LazyBSONCallback
ABSONCallback
for creation ofLazyBSONObject
andLazyBSONList
instances.Methods in org.bson that return BSONCallback Modifier and Type Method Description BSONCallback
BasicBSONCallback. createBSONCallback()
BSONCallback
BSONCallback. createBSONCallback()
Factory method for BSONCallbacks.BSONCallback
EmptyBSONCallback. createBSONCallback()
Methods in org.bson with parameters of type BSONCallback Modifier and Type Method Description int
BasicBSONDecoder. decode(byte[] bytes, BSONCallback callback)
int
BasicBSONDecoder. decode(InputStream in, BSONCallback callback)
int
BSONDecoder. decode(byte[] bytes, BSONCallback callback)
Decode a single BSON object into the given callback from the given byte array.int
BSONDecoder. decode(InputStream in, BSONCallback callback)
Decode a single BSON object into the given callback from the given input stream.int
LazyBSONDecoder. decode(byte[] bytes, BSONCallback callback)
int
LazyBSONDecoder. decode(InputStream in, BSONCallback callback)
-