-
Notifications
You must be signed in to change notification settings - Fork 0
Multithreaded dependency loading through agnostic API #2
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestpriority/mediumWork upon soonWork upon soonsize/xlLarge scale implementationLarge scale implementation
Description
Because different platforms have varying requirements and implementations for multithreaded functionality, we need a strict set of interfaces (e.g. IPlatformResourceLoader) to determine how a resource will be loaded. This will typically involve one of the following approaches:
- Loading on the main thread, likely within the Update method.
- Using a thread pool to handle tasks, distributing the load across multiple threads.
The primary consideration is the response type, which should neither block threads nor be executed on its own thread. (TaskCompletionSource)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestpriority/mediumWork upon soonWork upon soonsize/xlLarge scale implementationLarge scale implementation