Navigation
API > API/Plugins > API/Plugins/AsyncMessageSystem > API/Plugins/AsyncMessageSystem/FAsyncMessageBindingOptions
Determines which type of configuration this listener follows
| Name | EBindingType |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/AsyncMessageSystem/Source/AsyncMessageSystem/Public/AsyncMessageBindingOptions.h |
| Include Path | #include "AsyncMessageBindingOptions.h" |
Syntax
enum EBindingType
{
UseTickGroup = 0,
UseNamedThreads = 1,
UseTaskPriorities = 2,
}
Values
| Name | Remarks |
|---|---|
| UseTickGroup | If set, then this binding will receive a message on the main game thread during the specific tick group. |
| UseNamedThreads | If set, then this binding will receive a message on a thread matching these named thread options. |
| UseTaskPriorities | If set, then this binding will receive a message on a thread determined by the UE::Tasks::ETaskPriority and UE::Tasks::EExtendedTaskPriority. |