Akka.Remote.EndpointWriter.PublishAndThrow C# (CSharp) Метод

PublishAndThrow() приватный Метод

private PublishAndThrow ( Exception reason, LogLevel level ) : void
reason System.Exception
level LogLevel
Результат void
        private void PublishAndThrow(Exception reason, LogLevel level)
        {
            reason.Match().With<EndpointDisassociatedException>(endpoint => PublishDisassociated())
                .Default(msg => PublishError(reason, level));

            throw reason;
        }