mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 17:23:18 +00:00
Improved BroadcastService and added try...catch on async void callbacks (#1917)
This commit is contained in:
committed by
GitHub
parent
dbc1e5ea3e
commit
448cce38e1
@@ -5,7 +5,8 @@ namespace Bit.Core.Abstractions
|
||||
{
|
||||
public interface IBroadcasterService
|
||||
{
|
||||
void Send(Message message, string id = null);
|
||||
void Send(Message message);
|
||||
void Send(Message message, string id);
|
||||
void Subscribe(string id, Action<Message> messageCallback);
|
||||
void Unsubscribe(string id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user