Am I missing something here? No exceptions thrown, no events appearing.
PersistentSubscriptionSettings settings = PersistentSubscriptionSettings
.Create()
.DoNotResolveLinkTos()
.WithReadBatchOf(1000)
.StartFromBeginning();
_eventStoreConnection.CreatePersistentSubscriptionAsync(
"$all",
"sspevent",
settings,
_eventStoreCredentials);
Console.WriteLine("Subscription group created.");
_eventStoreConnection.ConnectToPersistentSubscription(
"$all",
"sspevent",
(sub, evt) => EventAppeared(sub, evt),
(sub, reason, ex) => SubscriptionDropped(reason),
_eventStoreCredentials,
1000,
false);
``