| FlowTIn, TOut, TMatToProcessor Method |
Converts this Flow to a
IRunnableGraphTMat that materializes to a Reactive Streams
IProcessor
which implements the operations encapsulated by this Flow. Every materialization results in a new Processor
instance, i.e. the returned
IRunnableGraphTMat is reusable.
Namespace:
Akka.Streams.Dsl
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public IRunnableGraph<IProcessor<TIn, TOut>> ToProcessor()
member ToProcessor : unit -> IRunnableGraph<IProcessor<'TIn, 'TOut>>
Return Value
Type:
IRunnableGraphIProcessorTIn,
TOutA
IRunnableGraphTMat that materializes to a
IProcessor when Run() is called on it.
See Also