Integrate nextgen RPC into clio (#572)

Fixes #592
This commit is contained in:
Alex Kremer
2023-05-04 16:15:36 +01:00
committed by GitHub
parent f1b3a6b511
commit d7d5d61747
145 changed files with 3208 additions and 6756 deletions

View File

@@ -55,6 +55,12 @@ private:
public:
Counters(WorkQueue const& wq) : workQueue_(std::cref(wq)){};
static Counters
make_Counters(WorkQueue const& wq)
{
return Counters{wq};
}
void
rpcErrored(std::string const& method);