Akka.Streams.Implementation.Fusing.GraphInterpreter.SetHandler C# (CSharp) Method

SetHandler() public method

Dynamic handler changes are communicated from a GraphStageLogic by this method.
public SetHandler ( int connection, IInHandler handler ) : void
connection int
handler IInHandler
return void
        public void SetHandler(int connection, IInHandler handler)
        {
            if (IsDebug) Console.WriteLine($"{Name} SETHANDLER {OutOwnerName(connection)} (in) {handler}");
            InHandlers[connection] = handler;
        }

Same methods

GraphInterpreter::SetHandler ( int connection, IOutHandler handler ) : void