Navigation
API > API/Runtime > API/Runtime/IoStoreOnDemand > API/Runtime/IoStoreOnDemand/IO
References
| Module | IoStoreOnDemand |
| Header | /Engine/Source/Runtime/Experimental/IoStore/OnDemand/Public/IO/IoStoreOnDemand.h |
| Include | #include "IO/IoStoreOnDemand.h" |
Syntax
namespace UE
{
namespace IoStore
{
enum EOnDemandMountOptions
{
StreamOnDemand = 1 << 0,
InstallOnDemand = 1 << 1,
CallbackOnGameThread = 1 << 2,
}
}
}
Values
| Name | Description |
|---|---|
| StreamOnDemand | Mount containers with the purpose of streaming the content on-demand. |
| InstallOnDemand | Mount containers with the purpose of installing/downloading the content on-demand. |
| CallbackOnGameThread | Trigger callback on game thread. |
Remarks
Options for controlling the behavior of mounted container(s).