Interface ICancelManager
Represents an algorithm cancel manager.
Namespace: QuikGraph.Algorithms.Services
Assembly: QuikGraph.dll
Syntax
public interface ICancelManager
Properties
| Improve this Doc View SourceIsCancelling
Gets a value indicating if a cancellation request is pending.
Declaration
bool IsCancelling { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
| Improve this Doc View SourceCancel()
Requests the component to cancel its computation.
Declaration
void Cancel()
ResetCancel()
Resets the cancel state.
Declaration
void ResetCancel()
Events
| Improve this Doc View SourceCancelRequested
Fired when the cancel method is called.
Declaration
event EventHandler CancelRequested
Event Type
Type | Description |
---|---|
System.EventHandler |
CancelReset
Fired when the cancel state has been resetting.
Declaration
event EventHandler CancelReset
Event Type
Type | Description |
---|---|
System.EventHandler |