Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Enqueue

Adds an element at the back of the queue.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: Unity.Collections
  • Assembly: UnityEngine.ManagedKernelModule

Enqueue(T)

Adds an element at the back of the queue.
public void Enqueue(T value)

Parameters

value

T
The value to be enqueued.

Enqueue(T, int)

Adds an element at the back of the queue.
public void Enqueue(T value, int threadIndexOverride)

Parameters

value

T
The value to be enqueued.

threadIndexOverride

The thread index which must be set by a field from a job struct with the NativeSetThreadIndexAttribute attribute.