CustomOperatorProxy.IsThreadSafe Property
Gets or sets a value that indicates whether the custom operator implementation is thread-safe.
Syntax
public System.Boolean IsThreadSafe { get; set; }
Property Value
Default: false
True if the custom operator implementation is thread-safe; otherwise, False.
Remarks
Custom operators are not considered thread-safe by default and custom operators in a TileLayer, GlobeTileLayer, GlobeView.ElevationInput, GlobeView.SurfaceLayers or GlobeView.AuxiliaryGroundInput will by default prevent tiles under the layer/input from being loaded in parallel.
If a custom operator implementation is known to be thread-safe then this property can be set to True.
When all custom operators in a TileLayer, GlobeTileLayer, GlobeView.ElevationInput, GlobeView.SurfaceLayers or GlobeView.AuxiliaryGroundInput are marked as thread-safe, then Carmenta Engine can load tiles in parallel.
The IsThreadSafe property only tells Carmenta Engine that the custom operator implementation is thread-safe. Actually making the implementation thread-safe is the responsibility of the implementor.
Setting IsThreadSafe to false only prevents TileLayer, GlobeTileLayer, GlobeView.ElevationInput, GlobeView.SurfaceLayers and GlobeView.AuxiliaryGroundInput from invoking the same custom operator instance in parallel. If the custom operator performs non-thread-safe accesses to global variables, it is unsafe to use multiple instances of the custom operator in different layers.
Platforms
Windows, Linux, Android