feat(AuthClient): try-start entfernen und Abbruch-Token hinzufügen, um asynchron zu starten

This commit is contained in:
Developer 02
2025-03-11 14:50:10 +01:00
parent 29ad0554bc
commit 4ccf7a20b3
4 changed files with 10 additions and 20 deletions

View File

@@ -4,7 +4,5 @@ public interface IAuthClient : IAuthListenHandler, IAuthSenderHandler
{
bool IsConnected { get; }
Task StartAsync();
Task<bool> TryStartAsync();
Task StartAsync(CancellationToken cancellationToken = default);
}