Packages

p

fs2

package fs2

Linear Supertypes

Package Members

  1. package io

    Provides various ways to work with streams that perform IO.

    Provides various ways to work with streams that perform IO.

    These methods accept a cats.effect.Blocker, as the underlying implementations perform blocking IO.

    See also

    https://typelevel.org/cats-effect/concurrency/basics.html#blocking-threads

Type Members

  1. abstract type INothing <: Nothing
  2. type Pipe[F[_], -I, +O] = (Stream[F, I]) => Stream[F, O]
  3. type Pipe2[F[_], -I, -I2, +O] = (Stream[F, I], Stream[F, I2]) => Stream[F, O]
  4. abstract type Pure[A] <: Nothing

Deprecated Type Members

  1. type Sink[F[_], -I] = (Stream[F, I]) => Stream[F, Unit]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.2) Use Pipe[F, I, Unit] instead

Inherited from AnyRef

Inherited from Any

Ungrouped