AddSafe
Introduction
The AddSafe method is a thread-safe way to add instructions to the engine. Typically "add" calls cannot be made on managers; however, the AddSafe method allows adding instructions from any thread.
Code Example
The AddSafe method takes an Instruction argument. The following code shows how to call AddSafe assuming you have a valid Instruction.
AddSafe and calling code on the primary thread
The AddSafe method can be called with an action to execute. This makes calling code on the primary thread easy:
As mentioned above, objects cannot be added to managers on secondary threads. The following shows how to add a Sprite on the primary thread
Code may execute next frame
Since the InstructionManager only performs instruction execution one time per frame, your code may execute after instructions have been processed that frame. This means that your code may not execute until next frame.
Last updated