Click or drag to resize
Akka.NETTransformerLikeBaseTIn, TOut Class
TBD
Inheritance Hierarchy
SystemObject
  Akka.StreamsTransformerLikeBaseTIn, TOut

Namespace:  Akka.Streams
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public abstract class TransformerLikeBase<TIn, TOut> : ITransformerLike<TIn, TOut>

Type Parameters

TIn
TBD
TOut
TBD

The TransformerLikeBaseTIn, TOut type exposes the following members.

Constructors
  NameDescription
Protected methodTransformerLikeBaseTIn, TOut
Initializes a new instance of the TransformerLikeBaseTIn, TOut class
Top
Properties
  NameDescription
Public propertyIsComplete
Invoked after handing off the elements produced from one input element to the downstream subscribers to determine whether to end stream processing at this point; in that case the upstream subscription is canceled.
Top
Methods
  NameDescription
Public methodCleanup
Invoked after normal completion or failure.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOnError
Invoked when failure is signaled from upstream. If this method throws an exception, then onError is immediately propagated downstream. If this method completes normally then OnTermination(Exception) is invoked as a final step, passing the original cause.
Public methodOnNext
Invoked for each element to produce a (possibly empty) sequence of output elements.
Public methodOnTermination
Invoked before the Transformer terminates (either normal completion or after an onError) to produce a (possibly empty) sequence of elements in response to the end-of-stream event. This method is only called if OnError(Exception) does not throw an exception. The default implementation of OnError(Exception) throws the received cause forcing the failure to propagate downstream immediately.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
See Also