| 125 | } |
| 126 | |
| 127 | ActionQueue::TimePoint ActionQueue::GetLastEmptyTime() |
| 128 | { |
| 129 | if (IsEmpty()) { |
| 130 | _lastEmpty = std::chrono::high_resolution_clock::now(); |
| 131 | } |
| 132 | return _lastEmpty; |
| 133 | } |
| 134 | |
| 135 | size_t ActionQueue::Size() |
| 136 | { |
no test coverage detected