(callId: number)
| 40 | } |
| 41 | |
| 42 | protected RemovePendingRequest(callId: number) { |
| 43 | const found = this.pendingRequests.findIndex(x => x.callId === callId); |
| 44 | if (found === -1) |
| 45 | return; |
| 46 | |
| 47 | this.pendingRequests.splice(found, 1); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Call remote function. throw |