mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
parent
6d55faf3f5
commit
4c1f49b6ac
1 changed files with 2 additions and 2 deletions
|
@ -35,9 +35,9 @@ public void ClosePipe()
|
||||||
Pipe?.Dispose();
|
Pipe?.Dispose();
|
||||||
Pipe = null;
|
Pipe = null;
|
||||||
}
|
}
|
||||||
public Task ProcessDataAsync()
|
public async Task ProcessDataAsync()
|
||||||
{
|
{
|
||||||
return ProcessDataAsync(CancellationToken.None);
|
await ProcessDataAsync(CancellationToken.None).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract Task ProcessDataAsync(CancellationToken token);
|
public abstract Task ProcessDataAsync(CancellationToken token);
|
||||||
|
|
Loading…
Reference in a new issue