implicit object BSONBinaryHandler extends BSONHandler[BSONBinary, Array[Byte]]
- Alphabetic
- By Inheritance
- BSONBinaryHandler
- BSONHandler
- BSONWriter
- BSONReader
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def afterRead[U](f: (Array[Byte]) => U): BSONReader[BSONBinary, U]
Returns a BSON reader that returns the result of applying
f
on the result of this reader.Returns a BSON reader that returns the result of applying
f
on the result of this reader.- f
the function to apply
- Definition Classes
- BSONReader
- final def afterWrite[U <: BSONValue](f: (BSONBinary) => U): BSONWriter[Array[Byte], U]
Returns a BSON writer that returns the result of applying
f
on the BSON value from this writer.Returns a BSON writer that returns the result of applying
f
on the BSON value from this writer.- f
the function to apply
- Definition Classes
- BSONWriter
- def as[R](to: (Array[Byte]) => R, from: (R) => Array[Byte]): BSONHandler[BSONBinary, R]
- Definition Classes
- BSONHandler
- final def beforeRead[U <: BSONValue](f: (U) => BSONBinary): BSONReader[U, Array[Byte]]
- Definition Classes
- BSONReader
- final def beforeWrite[U](f: (U) => Array[Byte]): BSONWriter[U, BSONBinary]
- Definition Classes
- BSONWriter
- def read(bin: BSONBinary): Array[Byte]
Reads a BSON value and produce an instance of
T
.Reads a BSON value and produce an instance of
T
.This method may throw exceptions at runtime. If used outside a reader, one should consider
readTry(bson: B): Try[T]
orreadOpt(bson: B): Option[T]
.- Definition Classes
- BSONBinaryHandler → BSONReader
- def readOpt(bson: BSONBinary): Option[Array[Byte]]
Tries to produce an instance of
T
from thebson
value, returnsNone
if an error occurred.Tries to produce an instance of
T
from thebson
value, returnsNone
if an error occurred.- Definition Classes
- BSONReader
- def readTry(bson: BSONBinary): Try[Array[Byte]]
Tries to produce an instance of
T
from thebson
value.Tries to produce an instance of
T
from thebson
value.- Definition Classes
- BSONReader
- def write(xs: Array[Byte]): BSONBinary
Writes an instance of
T
as a BSON value.Writes an instance of
T
as a BSON value.This method may throw exceptions at runtime. If used outside a reader, one should consider
writeTry(bson: B): Try[T]
orwriteOpt(bson: B): Option[T]
.- Definition Classes
- BSONBinaryHandler → BSONWriter
- def writeOpt(t: Array[Byte]): Option[BSONBinary]
Tries to produce a BSON value from an instance of
T
, returnsNone
if an error occurred.Tries to produce a BSON value from an instance of
T
, returnsNone
if an error occurred.- Definition Classes
- BSONWriter
- def writeTry(t: Array[Byte]): Try[BSONBinary]
Tries to produce a BSON value from an instance of
T
.Tries to produce a BSON value from an instance of
T
.- Definition Classes
- BSONWriter