Navigation
API > API/Runtime > API/Runtime/IoStoreOnDemandCore
Options for controlling the behavior of mounted container(s).
| Name | UE::IoStore::EOnDemandMountOptions |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/IoStore/OnDemandCore/Public/IO/IoStoreOnDemand.h |
| Include Path | #include "IO/IoStoreOnDemand.h" |
Syntax
namespace UE
{
namespace IoStore
{
enum EOnDemandMountOptions
{
StreamOnDemand = 1 << 0,
InstallOnDemand = 1 << 1,
CallbackOnGameThread = 1 << 2,
WithSoftReferences = 1 << 3,
ForceNonSecureHttp = 1 << 4,
}
}
}
Values
| Name | Remarks |
|---|---|
| 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. |
| WithSoftReferences | Make soft references available |
| ForceNonSecureHttp | Force the use of non-secure HTTP protocol. |