Click or drag to resize
Akka.NETIMaterializer Interface
TBD

Namespace:  Akka.Streams
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IMaterializer

The IMaterializer type exposes the following members.

Properties
  NameDescription
Public propertyExecutionContext
Running a flow graph will require execution resources, as will computations within Sources, Sinks, etc. This MessageDispatcher can be used by parts of the flow to submit processing jobs for execution, run Future callbacks, etc.
Top
Methods
  NameDescription
Public methodMaterializeTMat
This method interprets the given Flow description and creates the running stream. The result can be highly implementation specific, ranging from local actor chains to remote-deployed processing networks.
Public methodScheduleOnce
Interface for stages that need timer services for their functionality. Schedules a single task with the given delay.
Public methodScheduleRepeatedly
Interface for stages that need timer services for their functionality. Schedules a repeated task with the given interval between invocations.
Public methodWithNamePrefix
The namePrefix shall be used for deriving the names of processing entities that are created during materialization. This is meant to aid logging and failure reporting both during materialization and while the stream is running.
Top
See Also