Packages

trait BSONReader[B <: BSONValue, T] extends AnyRef

A reader that produces an instance of T from a subtype of BSONValue.

Self Type
BSONReader[B, T]
Linear Supertypes
Known Subclasses
IdentityReader, AggregationResultReader, BSONIndexStatAccessesReader, BSONIndexStatsReader, CollStatsResultReader, CountResultReader, DropCollectionResultReader, BSONDropIndexesReader, FindAndModifyResultReader, LastErrorReader, IsMasterResultReader, BSONCollectionNameReaders, BSONIndexListReader, PingReader, ReplSetMemberReader, ReplSetStatusReader, ResyncReader, BSONServerStatusAssertsReader, BSONServerStatusBackgroundFlushingReader, BSONServerStatusConnections, BSONServerStatusExtraInfo, BSONServerStatusGlobalLock, BSONServerStatusJournaling, BSONServerStatusJournalingTime, BSONServerStatusLock, BSONServerStatusNetwork, BSONServerStatusResultReader, UnitBoxReader, BSONDocumentReader, BSONHandler, BSONArrayIdentity, BSONBinaryHandler, BSONBinaryIdentity, BSONBooleanHandler, BSONBooleanIdentity, BSONBooleanLikeReader, BSONDateTimeHandler, BSONDateTimeIdentity, BSONDecimalHandler, BSONDecimalIdentity, BSONDocumentIdentity, BSONDoubleHandler, BSONDoubleIdentity, BSONIntegerHandler, BSONIntegerIdentity, BSONJavaScriptIdentity, BSONLongHandler, BSONLongIdentity, BSONNullIdentity, BSONNumberLikeReader, BSONObjectIDIdentity, BSONRegexIdentity, BSONStringHandler, BSONStringIdentity, BSONUndefinedIdentity, BSONValueIdentity, IdentityBSONConverter, BSONArrayCollectionReader, Handler, VariantBSONReaderWrapper, DefaultWriteResultReader, WriteConcernErrorReader, WriteErrorReader, UpdateResultReader, UpsertedReader, DealingWithGenericCommandErrorsReader, DefaultReadFileReader, IndexReader, NSIndexReader
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BSONReader
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def read(bson: B): T

    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] or readOpt(bson: B): Option[T].

Concrete Value Members

  1. final def afterRead[U](f: (T) => U): BSONReader[B, 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

  2. final def beforeRead[U <: BSONValue](f: (U) => B): BSONReader[U, T]
  3. def readOpt(bson: B): Option[T]

    Tries to produce an instance of T from the bson value, returns None if an error occurred.

  4. def readTry(bson: B): Try[T]

    Tries to produce an instance of T from the bson value.