TCircularQueue::Peek

Returns the oldest item in the queue without removing it.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/CircularQueue.h

Include

#include "Containers/CircularQueue.h"

Syntax

const ElementType * Peek() const

Remarks

Returns the oldest item in the queue without removing it.

To be called only from consumer thread.

The return value is only valid until Dequeue, Empty, or the destructor has been called.

Returns

an ElementType pointer if an item has been returned, nullptr if the queue was empty.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss