Akka.Interfaced.SlimServer.ActorBoundChannelBase.PostStop C# (CSharp) Method

PostStop() protected method

protected PostStop ( ) : void
return void
        protected override void PostStop()
        {
            if (_closed == false)
            {
                Context.System.EventStream.Publish(new Event.Warning(
                    Self.Path.ToString(), GetType(),
                    $"ActorBoundChannel should be called Close before Stop."));
            }
        }