(functionName, namespace string, serviceQueryResponse ServiceQueryResponse)
| 13 | // FunctionCacher queries functions and caches the results |
| 14 | type FunctionCacher interface { |
| 15 | Set(functionName, namespace string, serviceQueryResponse ServiceQueryResponse) |
| 16 | Get(functionName, namespace string) (ServiceQueryResponse, bool) |
| 17 | } |
| 18 |
no outgoing calls