using System;
using System.Collections.Generic;
using System.Text;
namespace Nuclex.Support.Tracking {
/// Interface for abortable processes
public interface IAbortable {
/// Aborts the running process. Can be called from any thread.
void AsyncAbort();
}
} // namespace Nuclex.Support.Tracking