refactor(ISenderHandler): Umbenennung in IAuthSenderHandler.
- umbenannt in SendMessageAsync als SendKeyAsync
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
namespace DigitalData.Auth.Abstractions;
|
||||
|
||||
public interface IAuthClient : IListenHandler, ISenderHandler
|
||||
public interface IAuthClient : IListenHandler, IAuthSenderHandler
|
||||
{
|
||||
bool IsConnected { get; }
|
||||
|
||||
|
||||
6
DigitalData.Auth.Abstractions/IAuthSenderHandler.cs
Normal file
6
DigitalData.Auth.Abstractions/IAuthSenderHandler.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace DigitalData.Auth.Abstractions;
|
||||
|
||||
public interface IAuthSenderHandler
|
||||
{
|
||||
Task SendKeyAsync(string topic, string key);
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
namespace DigitalData.Auth.Abstractions;
|
||||
|
||||
public interface ISenderHandler
|
||||
{
|
||||
Task SendMessageAsync(string user, string message);
|
||||
}
|
||||
Reference in New Issue
Block a user