Start sync client manager implementation

This commit is contained in:
2025-02-12 21:01:34 +01:00
parent 17e086b43c
commit 3822c209d3
6 changed files with 47 additions and 12 deletions

View File

@ -9,9 +9,9 @@ pub enum BroadcastMessage {
/// Close all the sessions of a given user
CloseAllUserSessions(UserID),
/// Stop sync client for a given user
StopSyncClientForUser(UserID),
StopSyncTaskForUser(UserID),
/// Start sync client for a given user (if not already running)
StartSyncClientForUser(UserID),
StartSyncTaskForUser(UserID),
/// Stop a client with a given client ID
StopSyncClient(SyncClientID),
}
}