Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


NativeContainerIsAtomicWriteOnlyAttribute

Indicates that the native container only allows writing, and can only be written to in safe, parallel contexts.
Read time 3 minutesLast updated 10 days ago

Definition

[AttributeUsage(AttributeTargets.Struct)]public sealed class NativeContainerIsAtomicWriteOnlyAttribute : Attribute

Remarks

Use this attribute when defining a concurrent, write-only interface to the data in the native container.
Providing a write-only interface to the data in a native container allows your container to be passed to parallel job types, such as IJobParallelFor, as writable without restrictions on which indices can be written to, and indicates that none of the portions overlap.
Native container types marked with this attribute must enforce write-only access.
For an alternative method of supporting parallel writing, refer to NativeContainerSupportsMinMaxWriteRestrictionAttribute. For information on creating your own native container, refer to the User Manual documentation on Implement a custom native container.

Inheritance

Inherited Members