blob: 8edafd51d7445819492fad549345b29615b20bf1 [file] [log] [blame]
using System;
namespace DotPulsar.Abstractions
{
/// <summary>
/// A pulsar client building abstraction
/// </summary>
public interface IPulsarClientBuilder
{
/// <summary>
/// The service URL for the Pulsar cluster
/// </summary>
IPulsarClientBuilder ServiceUrl(Uri uri);
/// <summary>
/// Create the client
/// </summary>
IPulsarClient Build();
}
}