StatefulMapConcatAccumulator

org.apache.pekko.stream.scaladsl.StatefulMapConcatAccumulator
@FunctionalInterface
trait StatefulMapConcatAccumulator[-In, +Out] extends In => IterableOnce[Out]

A special accumulator for StatefulMapConcat operator that allows to emit elements when the upstream has completed.

Attributes

Since

1.2.0

Source
StatefulMapConcatAccumulator.scala
Graph
Supertypes
trait In => IterableOnce[Out]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def onComplete(): IterableOnce[Out]

Called once the upstream has been completed, optional elements can be emitted, by default none.

Called once the upstream has been completed, optional elements can be emitted, by default none.

Attributes

Source
StatefulMapConcatAccumulator.scala

Inherited methods

def andThen[A](g: (IterableOnce[Out]) => A): In => A

Attributes

Inherited from:
Function1
def compose[A](g: A => In): A => IterableOnce[Out]

Attributes

Inherited from:
Function1
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1

Inherited and Abstract methods

def apply(v1: In): IterableOnce[Out]

Attributes

Inherited from:
Function1