2d145ca867
git-svn-id: file:///srv/devel/repo-conversion/nusu@9 d2e56fa2-650e-0410-a79f-9358c0239efd
16 lines
366 B
C#
16 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Nuclex.Support.Tracking {
|
|
|
|
/// <summary>Interface for abortable processes</summary>
|
|
public interface IAbortable {
|
|
|
|
/// <summary>Aborts the running process. Can be called from any thread.</summary>
|
|
void AsyncAbort();
|
|
|
|
}
|
|
|
|
} // namespace Nuclex.Support.Tracking
|