You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DataStreamPendingWriter (and others) there is an API to allow you to Add and pass in the lane index.
The lane index is NOT the NativeThreadIndex and this could be confusing to developers when they are running jobs that aren't in a TaskDriver job. Ex. Entities.ForEach.
We can probably remove any public facing mention of a lane index and instead have the [NativeSetThreadIndex] attribute on the writer itself. This would eliminate the need for the InitOnThread method on the writer and would ensure that regardless of the job type you are using, the instance has the correct LaneWriter.
The text was updated successfully, but these errors were encountered:
In
DataStreamPendingWriter
(and others) there is an API to allow you to Add and pass in the lane index.The lane index is NOT the NativeThreadIndex and this could be confusing to developers when they are running jobs that aren't in a TaskDriver job. Ex. Entities.ForEach.
We can probably remove any public facing mention of a lane index and instead have the
[NativeSetThreadIndex]
attribute on the writer itself. This would eliminate the need for theInitOnThread
method on the writer and would ensure that regardless of the job type you are using, the instance has the correct LaneWriter.The text was updated successfully, but these errors were encountered: