folly::UnparkControl

Controls whether a wait node is retained and whether unparking continues.

Synopsis

Declared in <folly/synchronization/ParkingLot.h>

enum class UnparkControl : int;

Members

NameDescription
RetainContinue Keep the node and continue visiting waiters.
RemoveContinue Remove the node and continue visiting waiters.
RetainBreak Keep the node and stop visiting waiters.
RemoveBreak Remove the node and stop visiting waiters.