Packages

trait ObservableLike[F[_]] extends ~>[F, Observable]

A lawless type class that provides conversions to Observable.

Sample:

// Conversion from cats.Eval
import cats.Eval

val source0 = Eval.always(1 + 1)
val task0 = ObservableLike[Eval].apply(source0)

// Conversion from Future
import scala.concurrent.Future

val source1 = Future.successful(1 + 1)
val task1 = ObservableLike[Future].apply(source1)

// Conversion from IO
import cats.effect.IO

val source2 = IO(1 + 1)
val task2 = ObservableLike[IO].apply(source2)

See Observable.from

Annotations
@implicitNotFound("""Cannot find implicit value for ObservableLike[${F}].
Building this implicit value might depend on having an implicit
s.c.ExecutionContext in scope, a Scheduler or some equivalent type."""
)
Source
ObservableLike.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObservableLike
  2. FunctionK
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def apply[A](fa: F[A]): Observable[A]

    Converts from F[A] to Observable[A], preserving referential transparency if F[_] is a pure data type and preserving interruptibility if the source is cancelable.

    Converts from F[A] to Observable[A], preserving referential transparency if F[_] is a pure data type and preserving interruptibility if the source is cancelable.

    Definition Classes
    ObservableLike → FunctionK

Concrete Value Members

  1. def and[H[_]](h: FunctionK[F, H]): FunctionK[F, [γ$2$]Tuple2K[Observable, H, γ$2$]]
    Definition Classes
    FunctionK
  2. def andThen[H[_]](f: FunctionK[Observable, H]): FunctionK[F, H]
    Definition Classes
    FunctionK
  3. def compose[E[_]](f: FunctionK[E, F]): FunctionK[E, Observable]
    Definition Classes
    FunctionK
  4. def narrow[F0[x] <: F[x]]: FunctionK[F0, Observable]
    Definition Classes
    FunctionK
  5. def or[H[_]](h: FunctionK[H, Observable]): FunctionK[[γ$0$]EitherK[F, H, γ$0$], Observable]
    Definition Classes
    FunctionK
  6. def widen[G0[x] >: Observable[x]]: FunctionK[F, G0]
    Definition Classes
    FunctionK