Click or drag to resize

GraphDocumentRenderManager Class

Manages the concurrent rendering of GraphDocuments.
Inheritance Hierarchy
SystemObject
  Altaxo.Graph.GdiGraphDocumentRenderManager

Namespace: Altaxo.Graph.Gdi
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class GraphDocumentRenderManager

The GraphDocumentRenderManager type exposes the following members.

Constructors
 NameDescription
Public methodGraphDocumentRenderManager Initializes a new instance of the GraphDocumentRenderManager class.
Top
Properties
 NameDescription
Public propertyStatic memberInstance 
Top
Methods
 NameDescription
Public methodAddTask Adds a new render task.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
The graph documents are rendered in separate, non-Gui threads. Since Altaxo is not thread safe, exceptions during rendering may happen because either the graph document or the underlying plot data were changed at the same time. This can not be avoided for now. Thats why, if an exception during rendering occurs, we try it again and again. We give the rendering a maximum of 16 trials and 30 seconds time from the first unsuccessful trial to the last.
See Also