Mongo Scala Driver - org.mongodb.scala.ObservableImplicits.ScalaObservable (original) (raw)
implicit class ScalaObservable[T] extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
ScalaObservable
AnyRef
Any
Hide All
Show All
Visibility
- Public
- Protected
Instance Constructors
- new ScalaObservable(obs: => Observable[T])
Value Members
- final def !=(arg0: Any): Boolean
- final def ##(): Int
- final def ==(arg0: Any): Boolean
- def andThen[U](pf: PartialFunction[Try[T], U]): Observable[T]
- final def asInstanceOf[T0]: T0
- def clone(): AnyRef
- def collect[S](): SingleObservable[Seq[T]]
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def fallbackTo[U >: T](that: Observable[U]): Observable[U]
- def filter(predicate: (T) => Boolean): Observable[T]
- def finalize(): Unit
- def flatMap[S](mapFunction: (T) => Observable[S]): Observable[S]
- def foldLeft[S](initialValue: S)(accumulator: (S, T) => S): SingleObservable[S]
- def foreach[U](doOnEach: (T) => U): Unit
- final def getClass(): Class[_ <: AnyRef]
- def hashCode(): Int
- def head(): Future[T]
- def headOption(): Future[Option[T]]
- final def isInstanceOf[T0]: Boolean
- def map[S](mapFunction: (T) => S): Observable[S]
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- val observable: Observable[T]
- def observeOn(context: ExecutionContext): Observable[T]
- def recover[U >: T](pf: PartialFunction[Throwable, U]): Observable[U]
- def recoverWith[U >: T](pf: PartialFunction[Throwable, Observable[U]]): Observable[U]
- def subscribe(doOnNext: (T) => Any, doOnError: (Throwable) => Any, doOnComplete: () => Any): Unit
- def subscribe(doOnError: (Throwable) => Any, doOnComplete: () => Any): Unit
- def subscribe(doOnNext: (T) => Any, doOnError: (Throwable) => Any): Unit
- def subscribe(doOnNext: (T) => Any): Unit
- final def synchronized[T0](arg0: => T0): T0
- def toFuture(): Future[Seq[T]]
- def toString(): String
- def transform[S](mapFunction: (T) => S, errorMapFunction: (Throwable) => Throwable): Observable[S]
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- final def withFilter(p: (T) => Boolean): Observable[T]
- def zip[U](that: Observable[U]): Observable[(T, U)]