t

akka.stream.stage

AsyncCallback

trait AsyncCallback[T] extends AnyRef

An asynchronous callback holder that is attached to a GraphStageLogic. Initializing AsyncCallback#invoke will eventually lead to the registered handler being called.

This holder has the same lifecycle as a stream and cannot be used before materialization is done.

Typical use cases are exchanging messages between stream and substreams or invoking from external world sending event to a stream

Source
GraphStage.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AsyncCallback
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def invoke(t: T): Unit

    Dispatch an asynchronous notification.

    Dispatch an asynchronous notification. This method is thread-safe and may be invoked from external execution contexts.

    For cases where it is important to know if the notification was ever processed or not see [AsyncCallback#invokeWithFeedback]]

  2. abstract def invokeWithFeedback(t: T): Future[Done]

    Dispatch an asynchronous notification.

    Dispatch an asynchronous notification. This method is thread-safe and may be invoked from external execution contexts.

    The method returns directly and the returned future is then completed once the event has been handled by the operator, if the event triggers an exception from the handler the future is failed with that exception and finally if the operator was stopped before the event has been handled the future is failed with StreamDetachedException.

    The handling of the returned future incurs a slight overhead, so for cases where it does not matter to the invoking logic see AsyncCallback#invoke