Packages

object cats

contains longevity.effect.Effect implementations for cats.effect.IO.

note that cats-effect is an optional library dependency in longevity, so you will have to declare the dependency yourself to use these effects.

Source
cats.scala
See also

https://github.com/typelevel/cats-effect

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

Value Members

  1. val defaultBlockingContext: ExecutionContextExecutor

    an execution context that is used as a default for blocking operations.

    an execution context that is used as a default for blocking operations. uses defaultBlockingThreadPool as the underlying thread pool.

    See also

    defaultBlockingThreadPool

  2. val defaultBlockingThreadPool: ExecutorService

    a thread pool that is used as a default for blocking operations.

    a thread pool that is used as a default for blocking operations. creates new threads as needed, as per java.util.concurrent.Executors.newCachedThreadPool.

    if you experience a lag between closing your connection and program exit, and you are using defaultBlockingContext, try calling shutdown() on this thread pool.

    See also

    https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/Executors.html#newCachedThreadPool()

  3. def ioEffect(nonBlockingContext: ExecutionContext, blockingContext: ExecutionContext): Effect[IO]

    a longevity.effect.Effect implementation for cats.effect.IO

    a longevity.effect.Effect implementation for cats.effect.IO

    nonBlockingContext

    the execution context used for non-blocking operations

    blockingContext

    the execution context used for non-blocking operations

  4. implicit def ioEffect(implicit nonBlockingContext: ExecutionContext): Effect[IO]

    an implicit longevity.effect.Effect implementation for cats.effect.IO.

    an implicit longevity.effect.Effect implementation for cats.effect.IO. uses the defaultBlockingContext for blocking operations

    nonBlockingContext

    the execution context used for non-blocking operations