Akka.Streams.Implementation.Fusing.GraphInterpreter.AttachUpstreamBoundary C# (CSharp) Метод

AttachUpstreamBoundary() публичный Метод

Assign the boundary logic to a given connection. This will serve as the interface to the external world (outside the interpreter) to process and inject events.
public AttachUpstreamBoundary ( int connection, UpstreamBoundaryStageLogic logic ) : void
connection int
logic UpstreamBoundaryStageLogic
Результат void
        public void AttachUpstreamBoundary(int connection, UpstreamBoundaryStageLogic logic)
        {
            logic.PortToConn[logic.Out.Id + logic.InCount] = connection;
            logic.Interpreter = this;
            OutHandlers[connection] = (OutHandler)logic.Handlers[0];
        }