System.Threading.TWorkStealingQueue.LocalPop
Delphi
function LocalPop(out AItem: T): Boolean;
C++
bool __fastcall LocalPop(/* out */ T &AItem);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Threading.pas System.Threading.hpp |
System.Threading | TWorkStealingQueue |
Description
Removes the item from the end of the queue.
The item is returned as an input reference of type T
. It also returns True
or False
to indicate if the item was succesfully removed or not.