MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Execute

Method Execute

Source/Engine/Scripting/Scripting.cs:27–33  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25 private readonly BlockingCollection<Task> _tasks = new BlockingCollection<Task>();
26
27 internal void Execute()
28 {
29 while (_tasks.TryTake(out var task))
30 {
31 TryExecuteTask(task);
32 }
33 }
34
35 private void Dispose(bool disposing)
36 {

Callers 1

Internal_UpdateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected