Controls whether a wait node is retained and whether unparking continues.
Declared in <folly/synchronization/ParkingLot.h>
enum class UnparkControl : int;
| Name | Description |
|---|---|
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. |