using System.Threading;
using System.Threading.Tasks;
using StackExchange.Redis;
namespace StellaOps.Scanner.WebService.Services;
///
/// Abstraction for creating Redis connections so publishers can be tested without real infrastructure.
///
internal interface IRedisConnectionFactory
{
ValueTask ConnectAsync(ConfigurationOptions options, CancellationToken cancellationToken);
}