Packages

o

monix.catnap

SchedulerEffect

object SchedulerEffect

Source
SchedulerEffect.scala
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. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clock[F[_]](source: Scheduler)(implicit F: Sync[F]): Clock[F]

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

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def contextShift[F[_]](source: Scheduler)(implicit F: Async[F]): ContextShift[F]

    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
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def timer[F[_]](source: Scheduler)(implicit F: Concurrent[F]): Timer[F]

    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!"))
    }
  18. def timerLiftIO[F[_]](source: Scheduler)(implicit F: LiftIO[F]): Timer[F]

    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!"))
    }
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped