CopyForAnotherThread Class |
Namespace: AGI.Foundation.Infrastructure
The CopyForAnotherThread type exposes the following members.
Name | Description | |
---|---|---|
CopyForAnotherThread | Initializes a new instance of the CopyForAnotherThread class |
Name | Description | |
---|---|---|
AddObjectMappingT |
Adds a mapping between an old object reference and a new one. The default implementation of
UpdateReferenceT(T) will substitute
newObject everywhere it encounters oldObject.
(Inherited from CopyContext.) | |
ClearObjectMapping |
Clears the list of mappings that has been created with calls to AddObjectMappingT(T, T). This is
useful if you want to reuse a CopyContext instance for a separate copy operation.
(Inherited from CopyContext.) | |
CloneT |
Copies the specified object using the ICloneWithContext interface or the
ICloneable interface, with a preference on
ICloneWithContext.
(Inherited from CopyContext.) | |
CloneIfNotMappedT |
Looks for a mapping for this object that was added with AddObjectMappingT(T, T). If one is found,
the object to which the specified one is mapped is returned. If one is not found, this method clones the
given object by calling CloneT(T). Derived classes can override this default behavior.
(Inherited from CopyContext.) | |
CopyT |
Copies an object for use in another thread.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetObjectMappingT |
Gets the mapping for the specified object.
(Inherited from CopyContext.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
UpdateReferenceT |
Updates a given reference, returning a reference to use in its place.
(Overrides CopyContextUpdateReferenceT(T).) |
The following example shows how to use this class to create a copy of an object that can be used simultaneously with the original from another thread:
// An object that we need to copy for another thread. In this case, we are // copying an evaluator. AxesEvaluator axesEvaluator = GeometryTransformer.GetAxesTransformation(fromAxes, toAxes); // Call the static Copy method. AxesEvaluator copiedEvaluator = CopyForAnotherThread.Copy(axesEvaluator);