Decoder

class Decoder[F[_], A](upstream: Stream[F, A])(implicit evidence$1: Effect[F]) extends Stream[F, A]
Companion:
object
class Stream[F, A]
class Object
trait Matchable
class Any
Decoder[F, A]

Value members

Concrete methods

def cancel(): F[Unit]
def decode[S, B](default: => S)(f: (S, A) => (S, Action[A, B])): Decoder[F, B]
def decodeAsync[S, B](default: => S)(f: (S, A) => F[(S, Action[A, B])]): Decoder[F, B]
def pull(): F[Option[A]]

Inherited methods

def ++(rhs: Stream[F, A]): Stream[F, A]
See also:

concat

Inherited from:
Stream
def collect[B](f: PartialFunction[A, B]): Stream[F, B]
Inherited from:
Stream
def concat(rhs: Stream[F, A]): Stream[F, A]

Sequently concat two streams

Sequently concat two streams

 Stream(1,2,3) ++ Stream(4,5,6)
 // 1,2,3,4,5,6
Inherited from:
Stream
def flatMap[B](f: A => Stream[F, B]): Stream[F, B]
See also:

flatMapConcat

Inherited from:
Stream
def flatMapAsync[B](f: A => F[Stream[F, B]]): Stream[F, B]
Inherited from:
Stream
def flatMapConcat[B](f: A => Stream[F, B]): Stream[F, B]

Merges underlying streams to one line.

Merges underlying streams to one line.

 Stream.eval(1, 2, 3) flatMapConcat { x =>
   Stream.eval(x + "a", x + "b", x + "c")
 }
 // 1a,1b,1c,2a,2b,2c,3a,3b,3c
Inherited from:
Stream
def flatMapMerge[B](concurrency: Int)(f: A => Stream[F, B]): Stream[F, B]

Merges underlying streams concurrently.

Merges underlying streams concurrently.

Value parameters:
concurrency

number of concurrent underlying streams

 Stream.eval(1, 2, 3) flatMapMerge(3) { x =>
   Stream.eval(x + "a", x + "b", x + "c")
 }
 // 1a,2a,3a,1b,2b,3b,1c,2c,3c
Inherited from:
Stream
def flatMapMergeAsync[B](concurrency: Int)(f: A => F[Stream[F, B]]): Stream[F, B]
Inherited from:
Stream
def fold[B](default: B)(f: (B, A) => B): F[B]
Inherited from:
Stream
def foldAsync[B](default: B)(f: (B, A) => F[B]): F[B]
Inherited from:
Stream
def foreach(f: A => F[Unit]): F[Unit]
Inherited from:
Stream
def handleConsumed: (F[Unit], Stream[F, A])
Inherited from:
Stream
def map[B](f: A => B): Stream[F, B]
Inherited from:
Stream
def mapAsync[B](f: A => F[B]): Stream[F, B]
Inherited from:
Stream
def over[B](default: B)(f: (B, Option[A]) => F[B]): Stream[F, A]

React on values of the stream keeping it the same. Useful when you want to track progress of downloading.

React on values of the stream keeping it the same. Useful when you want to track progress of downloading.

 file
   .over(0L) {
     case (acc, chunk) =>
       val loaded = chunk.fold(acc)(_.length.toLong + acc)
       showProgress(loaded, file.bytesLength)
   }
   .to(s3bucket("my-large-file"))
Inherited from:
Stream
def sort(numRacks: Int)(f: A => Int): List[Stream[F, A]]

Sort elements of the stream between "racks".

Sort elements of the stream between "racks".

 val List(girls, boys, queers) = persons.sort(3) {
   case person if person.isFemale => 0
   case person if person.isMale => 1
   case person => 2
 }
Value parameters:
f

Takes element of the stream return number of rack.

numRacks

Number of racks.

Returns:

List of streams appropriate to racks.

Inherited from:
Stream
def to[U](f: Stream[F, A] => F[U]): F[U]
Inherited from:
Stream