Object

monix.catnap

SchedulerEffect

Related Doc: package catnap

Permalink

object SchedulerEffect

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SchedulerEffect
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clock[F[_]](source: Scheduler)(implicit F: Sync[F]): Clock[F]

    Permalink

    Derives a cats.effect.Clock from Scheduler for any data type that has a cats.effect.LiftIO implementation.

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def contextShift[F[_]](source: Scheduler)(implicit F: Async[F]): ContextShift[F]

    Permalink

    Derives a cats.effect.ContextShift from Scheduler for any data type that has a cats.effect.Effect implementation.

    Derives a cats.effect.ContextShift from Scheduler for any data type that has a cats.effect.Effect implementation.

    import monix.execution.Scheduler
    import java.util.concurrent.Executors
    import scala.concurrent.ExecutionContext
    import cats.effect._
    
    val contextShift: ContextShift[IO] = SchedulerEffect.contextShift[IO](Scheduler.global)
    val executor = Executors.newCachedThreadPool()
    val ec = ExecutionContext.fromExecutor(executor)
    
    contextShift.evalOn(ec)(IO(println("I'm on different thread pool!")))
      .flatMap { _ =>
        IO(println("I came back to default"))
      }
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def timer[F[_]](source: Scheduler)(implicit F: Concurrent[F]): Timer[F]

    Permalink

    Derives a cats.effect.Timer from Scheduler for any data type that has a cats.effect.Concurrent type class instance.

    Derives a cats.effect.Timer from Scheduler for any data type that has a cats.effect.Concurrent type class instance.

    import monix.execution.Scheduler
    import cats.effect._
    import scala.concurrent.duration._
    
    // Needed for ContextShift[IO]
    implicit def shift: ContextShift[IO] =
      SchedulerEffect.contextShift[IO](Scheduler.global)(IO.ioEffect)
    
    implicit val timer: Timer[IO] = SchedulerEffect.timer[IO](Scheduler.global)
    
    IO.sleep(10.seconds).flatMap { _ =>
      IO(println("Delayed hello!"))
    }
  19. def timerLiftIO[F[_]](source: Scheduler)(implicit F: LiftIO[F]): Timer[F]

    Permalink

    Derives a cats.effect.Timer from Scheduler for any data type that has a cats.effect.LiftIO instance.

    Derives a cats.effect.Timer from Scheduler for any data type that has a cats.effect.LiftIO instance.

    This is the relaxed timer method, needing only LiftIO to work, by piggybacking on cats.effect.IO.

    import monix.execution.Scheduler
    import cats.effect._
    import scala.concurrent.duration._
    
    implicit val timer: Timer[IO] = SchedulerEffect.timerLiftIO[IO](Scheduler.global)
    
    IO.sleep(10.seconds).flatMap { _ =>
      IO(println("Delayed hello!"))
    }
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped