RemoteItemMover, Startup/Exit handler refactor

This commit is contained in:
2023-07-26 13:51:17 +02:00
parent 3de71cbdbe
commit 0b36fb939c
23 changed files with 210 additions and 110 deletions

View File

@@ -2,5 +2,5 @@ namespace FileTime.App.Core.Services;
public interface IExitHandler
{
Task ExitAsync();
Task ExitAsync(CancellationToken token = default);
}

View File

@@ -2,5 +2,5 @@ namespace FileTime.App.Core.Services.Persistence;
public interface ITabPersistenceService : IStartupHandler, IExitHandler
{
void SaveStates();
void SaveStates(CancellationToken token = default);
}