feat: execute post-baseline jetstream parity plan
This commit is contained in:
@@ -1,15 +1,18 @@
|
||||
using NATS.Server.Configuration;
|
||||
using NATS.Server;
|
||||
|
||||
namespace NATS.Server.JetStream;
|
||||
|
||||
public sealed class JetStreamService : IAsyncDisposable
|
||||
{
|
||||
private readonly JetStreamOptions _options;
|
||||
public InternalClient? InternalClient { get; }
|
||||
public bool IsRunning { get; private set; }
|
||||
|
||||
public JetStreamService(JetStreamOptions options)
|
||||
public JetStreamService(JetStreamOptions options, InternalClient? internalClient = null)
|
||||
{
|
||||
_options = options;
|
||||
InternalClient = internalClient;
|
||||
}
|
||||
|
||||
public Task StartAsync(CancellationToken ct)
|
||||
|
||||
Reference in New Issue
Block a user