* Wake up all calls waiting in blockUntilTriggered() */
| 110 | * Wake up all calls waiting in blockUntilTriggered() |
| 111 | */ |
| 112 | void triggerPendingCalls() { |
| 113 | concurrency::Guard g(mutex_); |
| 114 | wait_ = false; |
| 115 | triggerMonitor.notifyAll(); |
| 116 | } |
| 117 | |
| 118 | protected: |
| 119 | /** |
no test coverage detected