![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <INetworkFileSystemModule.h>
Inheritance diagram for INetworkFileSystemModule:Public Member Functions | |
| virtual INetworkFileServer * | CreateNetworkFileServer (bool bLoadTargetPlatforms, int32 Port=-1, FNetworkFileDelegateContainer InNetworkFileDelegateContainer=FNetworkFileDelegateContainer(), const ENetworkFileServerProtocol Protocol=NFSP_Tcp) const =0 |
| virtual INetworkFileServer * | CreateNetworkFileServer (FNetworkFileServerOptions FileServerOptions, bool bLoadTargetPlatforms) const =0 |
| virtual INetworkFileServer * | CreateNetworkFileServer (TSharedRef< UE::Cook::ICookOnTheFlyNetworkServer > CookOnTheFlyNetworkServer, FNetworkFileDelegateContainer Delegates) const |
| virtual | ~INetworkFileSystemModule () |
Public Member Functions inherited from IModuleInterface | |
| virtual | ~IModuleInterface () |
| virtual void | StartupModule () |
| virtual void | PreUnloadCallback () |
| virtual void | PostLoadCallback () |
| virtual void | ShutdownModule () |
| virtual bool | SupportsDynamicReloading () |
| virtual bool | SupportsAutomaticShutdown () |
| virtual bool | IsGameModule () const |
Interface for network file system modules.
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
Creates a new network file server.
| InPort | The port number to bind to (-1 = default port, 0 = any available port). |
| Streaming | Whether it should be a streaming server. |
| InFileRequestDelegate | An optional delegate to be invoked when a file is requested by a client. |
| InRecompileShadersDelegate | An optional delegate to be invoked when shaders need to be recompiled. |
Implemented in FNetworkFileSystemModule.
|
pure virtual |
Creates a new network file server.
| FileServerOptions | File server options |
| bLoadTargetPlatforms | If true, gets the target platform from the command line or all available target platforms |
Implemented in FNetworkFileSystemModule.
|
inlinevirtual |
Creates a new network file server for COTF.
| CookOnTheFlyNetworkServer | CookOnTheFly network server |
| Delegates | Delegates to be invoked when a file is requested by a client. |
Reimplemented in FNetworkFileSystemModule.