AsyncCall describes a pending or completed asynchronous function call.
| 54 | |
| 55 | // AsyncCall describes a pending or completed asynchronous function call. |
| 56 | type AsyncCall interface { |
| 57 | // CallID returns the unique identifier for this async call invocation. |
| 58 | CallID() int64 |
| 59 | // Function returns the name of the function being called. |
| 60 | Function() string |
| 61 | // Overload returns the specific overload ID being invoked. |
| 62 | Overload() string |
| 63 | } |
| 64 | |
| 65 | // evalAsyncFunc is the planned Interpretable for an asynchronous function call. |
| 66 | type evalAsyncFunc struct { |
no outgoing calls
no test coverage detected