(group: string, requestID: string)
| 65 | produce((state) => { |
| 66 | let currentGroup: string; |
| 67 | function getInvocation(group: string, requestID: string) { |
| 68 | currentGroup = group; |
| 69 | const index = invocations.get(group)?.get(requestID); |
| 70 | if (index === undefined || index < 0) return; |
| 71 | return state[group]?.at(index); |
| 72 | } |
| 73 | for (const event of data) { |
| 74 | performance.mark("start"); |
| 75 | switch (event.type) { |