Replaced all usages of DisposableObject with DisposableObjectSlim

This commit is contained in:
Robert
2018-01-10 13:48:55 +01:00
parent d0d4885812
commit bba58ea0c0
16 changed files with 25 additions and 24 deletions

View File

@@ -12,7 +12,7 @@ namespace Umbraco.Web.Scheduling
/// depending on whether the task is implemented as a sync or async method, and then
/// optionnally overriding RunsOnShutdown, to indicate whether the latched task should run
/// immediately on shutdown, or just be abandonned (default).</remarks>
public abstract class LatchedBackgroundTaskBase : DisposableObject, ILatchedBackgroundTask
public abstract class LatchedBackgroundTaskBase : DisposableObjectSlim, ILatchedBackgroundTask
{
private TaskCompletionSource<bool> _latch;