|  | GraphInterpreterConnection Constructor | 
 
            TBD
            
 
    Namespace: 
   Akka.Streams.Implementation.Fusing
    Assembly:
   Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
 Syntax
Syntaxpublic Connection(
	int id,
	int inOwnerId,
	GraphStageLogic inOwner,
	int outOwnerId,
	GraphStageLogic outOwner,
	IInHandler inHandler,
	IOutHandler outHandler
)
new : 
        id : int * 
        inOwnerId : int * 
        inOwner : GraphStageLogic * 
        outOwnerId : int * 
        outOwner : GraphStageLogic * 
        inHandler : IInHandler * 
        outHandler : IOutHandler -> ConnectionParameters
- id
- Type: SystemInt32
 Identifier of the connection. Corresponds to the array slot in the GraphAssembly
- inOwnerId
- Type: SystemInt32
 Identifier of the owner of the input side of the connection. Corresponds to the array slot in the GraphAssembly
- inOwner
- Type: Akka.Streams.StageGraphStageLogic
 The stage logic that corresponds to the input side of the connection.
- outOwnerId
- Type: SystemInt32
 Identifier of the owner of the output side of the connection. Corresponds to the array slot in the GraphAssembly
- outOwner
- Type: Akka.Streams.StageGraphStageLogic
 The stage logic that corresponds to the output side of the connection.
- inHandler
- Type: Akka.Streams.StageIInHandler
 The handler that contains the callback for input events.
- outHandler
- Type: Akka.Streams.StageIOutHandler
 The handler that contains the callback for output events.
 See Also
See Also