FStreamableHandle::FindMatchingHandle

Return a [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr) of the first handle among this and descendants which satisfies the predicate.

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

TSharedPtr< FStreamableHandle > FindMatchingHandle
(
    TFunction< bool &)> Predicate
) const

Remarks

Return a TSharedPtr of the first handle among this and descendants which satisfies the predicate.

Returns

Either the first matching handle, or nullptr

Parameters

Parameter

Description

Predicate

Conditional applied to each candidate handle

See Also