Click or drag to resize
Akka.NETActorMaterializer Class
A ActorMaterializer takes the list of transformations comprising a IFlowTOut, TMat and materializes them in the form of IProcessor instances. How transformation steps are split up into asynchronous regions is implementation dependent.
Inheritance Hierarchy

Namespace:  Akka.Streams
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public abstract class ActorMaterializer : IMaterializer, 
	IDisposable

The ActorMaterializer type exposes the following members.

Constructors
  NameDescription
Protected methodActorMaterializer
Initializes a new instance of the ActorMaterializer class
Top
Properties
  NameDescription
Public propertyExecutionContext
TBD
Public propertyIsShutdown
Indicates if the materializer has been shut down.
Public propertyLogger
TBD
Public propertySettings
TBD
Public propertySupervisor
TBD
Public propertySystem
TBD
Top
Methods
  NameDescription
Public methodActorOf
TBD
Public methodStatic memberCreate

Creates a ActorMaterializer which will execute every step of a transformation pipeline within its own ActorBase. The required IActorRefFactory (which can be either an ActorSystem or an IActorContext) will be used to create one actor that in turn creates actors for the transformation steps.

The materializer's ActorMaterializerSettings will be obtained from the configuration of the context's underlying ActorSystem.

The namePrefix is used as the first part of the names of the actors running the processing steps. The default namePrefix is "flow". The actor names are built up of `namePrefix-flowNumber-flowStepNumber-stepName`.

Public methodStatic memberDefaultConfig
TBD
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Public methodEffectiveSettings
TBD
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.)
Public methodMaterializeTMat
TBD
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodScheduleOnce
TBD
Public methodScheduleRepeatedly
TBD
Public methodShutdown
Shuts down this materializer and all the stages that have been materialized through this materializer. After having shut down, this materializer cannot be used again. Any attempt to materialize stages after having shut down will result in an IllegalStateException being thrown at materialization time.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWithNamePrefix
TBD
Top
Extension Methods
See Also