Navigation
API > API/Developer > API/Developer/Virtualization > API/Developer/Virtualization/IVirtualizationBackend
Description
This will be called during the setup of the backend hierarchy. The entry config file entry that caused the backend to be created will be passed to the method so that any additional settings may be parsed from it. Take care to clearly log any error that occurs so that the end user has a clear way to fix them.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Developer/Virtualization/Public/IVirtualizationBackend.h |
| Include Path | #include "IVirtualizationBackend.h" |
bool Initialize
(
const FString & ConfigEntry
)
Returning false indicates that initialization failed in a way that the backend will not be able to function correctly.
Parameters
| Name | Remarks |
|---|---|
| ConfigEntry | The entry for the backend from the config ini file that may contain additional settings. |