Click or drag to resize
Akka.NETGraphAssemblyMaterialize Method
Takes an interpreter and returns three arrays required by the interpreter containing the input, output port handlers and the stage logic instances.

Returns a tuple of

- lookup table for InHandlers

- lookup table for OutHandlers

- array of the logics

- materialized value

Namespace:  Akka.Streams.Implementation.Fusing
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Tuple<GraphInterpreterConnection[], GraphStageLogic[]> Materialize(
	Attributes inheritedAttributes,
	IModule[] copiedModules,
	IDictionary<IModule, Object> materializedValues,
	Action<IMaterializedValueSource> register
)

Parameters

inheritedAttributes
Type: Akka.StreamsAttributes
TBD
copiedModules
Type: Akka.Streams.ImplementationIModule
TBD
materializedValues
Type: System.Collections.GenericIDictionaryIModule, Object
TBD
register
Type: SystemActionIMaterializedValueSource
TBD

Return Value

Type: TupleGraphInterpreterConnection, GraphStageLogic
TBD
Exceptions
ExceptionCondition
ArgumentExceptionTBD
See Also