Sync

trait Sync[-In, +R] extends Consumer[In, R]

Defines a synchronous Consumer that builds synchronous subscribers.

class Consumer[In, R]
trait Serializable
trait Observable[In] => Task[R]
class Object
trait Matchable
class Any

Value members

Abstract methods

override def createSubscriber(cb: Callback[Throwable, R], s: Scheduler): (Sync[In], AssignableCancelable)
Definition Classes

Inherited methods

def andThen[A](g: Task[R] => A): Observable[In] => A
Inherited from:
Function1
final def apply(source: Observable[In]): Task[R]

Given a source Observable, convert it into a Task by piggybacking on createSubscriber.

Given a source Observable, convert it into a Task by piggybacking on createSubscriber.

Inherited from:
Consumer
def compose[A](g: A => Observable[In]): A => Task[R]
Inherited from:
Function1
final def contramap[In2](f: In2 => In): Consumer[In2, R]

Given a contravariant mapping function, transform the source consumer by transforming the input.

Given a contravariant mapping function, transform the source consumer by transforming the input.

Inherited from:
Consumer
final def map[R2](f: R => R2): Consumer[In, R2]

Given a mapping function, when consuming a stream, applies the mapping function to the final result, thus modifying the output of the source consumer.

Given a mapping function, when consuming a stream, applies the mapping function to the final result, thus modifying the output of the source consumer.

Note that for applying the mapping function an asynchronous boundary is forced, otherwise it could trigger a stack overflow exception. For more efficient mapping of the result, it's probably better to map the resulting Task on Observable.consumeWith.

See also:

mapTask for a variant that can map the output to a Task that can be processed asynchronously.

Inherited from:
Consumer
final def mapEval[F[_], R2](f: R => F[R2])(implicit F: TaskLike[F]): Consumer[In, R2]

Given a mapping function, when consuming a stream, applies the mapping function to the final result, thus modifying the output of the source consumer.

Given a mapping function, when consuming a stream, applies the mapping function to the final result, thus modifying the output of the source consumer.

The mapping function returns results using a generic F[_] data type that must implement the cats.effect.Effect type class. Examples of such classes are cats.effect.IO and monix.eval.Task, thus being able to do asynchronous processing.

See mapTask for the version that's specialized on Task.

Inherited from:
Consumer
final def mapTask[R2](f: R => Task[R2]): Consumer[In, R2]

Given a mapping function, when consuming a stream, applies the mapping function to the final result, thus modifying the output of the source consumer.

Given a mapping function, when consuming a stream, applies the mapping function to the final result, thus modifying the output of the source consumer.

The mapping function returns a Task that can be used to process results asynchronously.

Note that for applying the mapping function an asynchronous boundary is forced, otherwise it could trigger a stack overflow exception. For more efficient mapping of the result, it's probably better to map the resulting Task on Observable.consumeWith.

See mapEval for the version that can work with any data type that implements cats.effect.Effect.

Inherited from:
Consumer
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from:
Function1
final def transformInput[In2](f: Observable[In2] => Observable[In]): Consumer[In2, R]

Given a function that transforms the input stream, uses it to transform the source consumer into one that accepts events of the type specified by the transformation function.

Given a function that transforms the input stream, uses it to transform the source consumer into one that accepts events of the type specified by the transformation function.

Inherited from:
Consumer