Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
add timer to childprocess service
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Mar 8, 2024
1 parent 5aadf57 commit 61f8377
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/OneWare.Essentials/Services/IChildProcessService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ namespace OneWare.Essentials.Services;
public interface IChildProcessService
{
public Task<(bool success, string output)> ExecuteShellAsync(string path, string arguments, string workingDirectory,
string status, AppState state = AppState.Loading);
string status, AppState state = AppState.Loading, bool showTimer = false, Action<string>? outputAction = null,
Func<string, bool>? errorAction = null);
}

0 comments on commit 61f8377

Please sign in to comment.