Click or drag to resize
Akka.NETGraphDslCreateTShapeOut, TMat, TShape1 Method (IGraphTShape1, TMat, FuncGraphDslBuilderTMat, TShape1, TShapeOut)

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static IGraph<TShapeOut, TMat> Create<TShapeOut, TMat, TShape1>(
	IGraph<TShape1, TMat> g1,
	Func<GraphDslBuilder<TMat>, TShape1, TShapeOut> buildBlock
)
where TShapeOut : Shape
where TShape1 : Shape

Parameters

g1
Type: Akka.StreamsIGraphTShape1, TMat
Graph used as input parameter.
buildBlock
Type: SystemFuncGraphDslBuilderTMat, TShape1, TShapeOut
Graph construction function.

Type Parameters

TShapeOut
A type describing shape of the returned graph.
TMat
A type of value, that graph will materialize to after completion.
TShape1
A type of shape of the input graph.

Return Value

Type: IGraphTShapeOut, TMat
A graph with materialized value.
See Also