(callID int64)
| 243 | } |
| 244 | |
| 245 | func (t *asyncCallStateTracker) getByID(callID int64) *asyncCallState { |
| 246 | t.mu.RLock() |
| 247 | defer t.mu.RUnlock() |
| 248 | return t.callsByID[callID] |
| 249 | } |
| 250 | |
| 251 | func newAsyncCallState(id int64, function, overload string, argVals []ref.Val, impl functions.AsyncOp) *asyncCallState { |
| 252 | return &asyncCallState{ |
no outgoing calls