Files
FileTime2/src/Core/FileTime.Core.Abstraction/Timeline/ICommandScheduler.cs
2022-06-09 08:28:12 +02:00

11 lines
317 B
C#

using FileTime.Core.Command;
using FileTime.Core.Models;
namespace FileTime.Core.Timeline;
public interface ICommandScheduler
{
Task AddCommand(ICommand command, int? batchId = null, bool toNewBatch = false);
IObservable<FullName> ContainerToRefresh { get; }
void RefreshContainer(FullName container);
}