Show / Hide Table of Contents

Interface ICancelManager

Represents an algorithm cancel manager.

Namespace: QuikGraph.Algorithms.Services
Assembly: QuikGraph.dll
Syntax
public interface ICancelManager

Properties

| Improve this Doc View Source

IsCancelling

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 Source

Cancel()

Requests the component to cancel its computation.

Declaration
void Cancel()
| Improve this Doc View Source

ResetCancel()

Resets the cancel state.

Declaration
void ResetCancel()

Events

| Improve this Doc View Source

CancelRequested

Fired when the cancel method is called.

Declaration
event EventHandler CancelRequested
Event Type
Type Description
System.EventHandler
| Improve this Doc View Source

CancelReset

Fired when the cancel state has been resetting.

Declaration
event EventHandler CancelReset
Event Type
Type Description
System.EventHandler

Extension Methods

GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, XmlReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, String, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeAndValidateFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String, Action<XmlWriter, TGraph>, Action<XmlWriter, TVertex>, Action<XmlWriter, TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph