blob: b3e141e13c23a72d0d41dab5a1b98fa5c385132e [file] [log] [blame]
using System;
namespace DotPulsar.Internal.Abstractions
{
public interface IFaultStrategy
{
FaultAction DetermineFaultAction(Exception exception);
TimeSpan TimeToWait { get; }
}
}