(sessionID)
| 990 | handledCommandEvents.delete(entryKey); |
| 991 | } |
| 992 | function consumeHandled(sessionID, name, args) { |
| 993 | const key = commandKey(sessionID, name, args); |
| 994 | const entry = handledCommands.get(key); |
| 995 | if (!entry || now() - entry.time >= COMMAND_DEDUPE_MS) { |
| 996 | handledCommands.delete(key); |
| 997 | return false; |
| 998 | } |
| 999 | if (entry.pending <= 1) |
no outgoing calls
no test coverage detected