| ActorPublisherTOnNext Method |
Sends an element to the stream subscriber. You are allowed to send as many elements
as have been requested by the stream subscriber. This amount can be inquired with
TotalDemand. It is only allowed to use
OnNext(T) when
IsActive and
TotalDemand > 0,
otherwise
OnNext(T) will throw
IllegalStateException.
Namespace:
Akka.Streams.Actors
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public void OnNext(
T element
)
member OnNext :
element : 'T -> unit
Parameters
- element
- Type: T
TBD
Exceptions See Also