KorolevStreamSubscriber

final class KorolevStreamSubscriber[F[_], T] extends Stream[F, T] with Subscriber[T]
trait Subscriber[T]
class Stream[F, T]
class Object
trait Matchable
class Any

Value members

Concrete methods

def cancel(): F[Unit]
def onComplete(): Unit
def onError(error: Throwable): Unit
def onNext(value: T): Unit
def onSubscribe(subscription: Subscription): Unit
def pull(): F[Option[T]]

Inherited methods

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

concat

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

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: T => Stream[F, B]): Stream[F, B]
See also:

flatMapConcat

Inherited from:
Stream
def flatMapAsync[B](f: T => F[Stream[F, B]]): Stream[F, B]
Inherited from:
Stream
def flatMapConcat[B](f: T => 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: T => 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: T => F[Stream[F, B]]): Stream[F, B]
Inherited from:
Stream
def fold[B](default: B)(f: (B, T) => B): F[B]
Inherited from:
Stream
def foldAsync[B](default: B)(f: (B, T) => F[B]): F[B]
Inherited from:
Stream
def foreach(f: T => F[Unit]): F[Unit]
Inherited from:
Stream
def handleConsumed: (F[Unit], Stream[F, T])
Inherited from:
Stream
def map[B](f: T => B): Stream[F, B]
Inherited from:
Stream
def mapAsync[B](f: T => F[B]): Stream[F, B]
Inherited from:
Stream
def over[B](default: B)(f: (B, Option[T]) => F[B]): Stream[F, T]

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: T => Int): List[Stream[F, T]]

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, T] => F[U]): F[U]
Inherited from:
Stream