Package akka.stream.stage
Interface AsyncCallback<T>
-
public interface AsyncCallback<T>
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}
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
invoke(T t)
Dispatch an asynchronous notification.scala.concurrent.Future<Done>
invokeWithFeedback(T t)
Dispatch an asynchronous notification.
-
-
-
Method Detail
-
invoke
void invoke(T t)
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}
- Parameters:
t
- (undocumented)
-
invokeWithFeedback
scala.concurrent.Future<Done> invokeWithFeedback(T t)
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
invoke(T)
- Parameters:
t
- (undocumented)- Returns:
- (undocumented)
-
-