| 21 | _members.add(gesture); |
| 22 | } |
| 23 | void GestureArena::close() |
| 24 | { |
| 25 | if (_state != GestureArenaState::Opened) |
| 26 | { |
| 27 | SKR_LOG_ERROR(u8"close a non-opened arena is not allowed"); |
| 28 | } |
| 29 | _state = GestureArenaState::Closed; |
| 30 | _try_to_resolve_arena(); |
| 31 | } |
| 32 | void GestureArena::sweep() |
| 33 | { |
| 34 | if (_state != GestureArenaState::Closed && _state != GestureArenaState::Resolved) |
no outgoing calls