blob: d0a5f06ac3c2c4f7a861274e9d2917e96fffbc20 [file] [log] [blame]
using System.Threading;
using System.Threading.Tasks;
namespace DotPulsar.Internal.Abstractions
{
public interface IProducerStreamFactory
{
Task<IProducerStream> CreateStream(IProducerProxy proxy, CancellationToken cancellationToken = default);
}
}