FStreamableHandle::ExecuteDelegate

Calls a StreamableDelegate, this will add to the delayed callback queue depending on s.StreamableDelegateDelayFrames

Choose your operating system:

Windows

macOS

Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Engine/StreamableManager.h

Include

#include "Engine/StreamableManager.h"

Source

/Engine/Source/Runtime/Engine/Private/StreamableManager.cpp

Syntax

static void ExecuteDelegate
(
    const FStreamableDelegate & Delegate,
    TSharedPtr< FStreamableHandle > AssociatedHandle,
    const FStreamableDelegate & CancelDelegate
)

Remarks

Calls a StreamableDelegate, this will add to the delayed callback queue depending on s.StreamableDelegateDelayFrames

Parameters

Parameter

Description

Delegate

Primary delegate to execute

AssociatedHandle

Streamable handle associated with this delegate, may be null

CancelDelegate

If handle gets cancelled before primary delegate executes, this delegate will be called instead