From bdfd0e49219fc4603a4946ad99b6336864998e71 Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Fri, 13 Jan 2017 00:02:55 +0100 Subject: replace memorytub with Stash. --- fnet/src/examples/frt/rpc/rpc_proxy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fnet/src/examples') diff --git a/fnet/src/examples/frt/rpc/rpc_proxy.cpp b/fnet/src/examples/frt/rpc/rpc_proxy.cpp index dd29255093a..9f6ae37ab2d 100644 --- a/fnet/src/examples/frt/rpc/rpc_proxy.cpp +++ b/fnet/src/examples/frt/rpc/rpc_proxy.cpp @@ -146,7 +146,7 @@ RPCProxy::HOOK_Mismatch(FRT_RPCRequest *req) GetSession(req)->server != NULL) { GetSession(req)->server->InvokeAsync(req, 60.0, - new (req->GetMemoryTub()) + new (req->getStash()) ReqDone(*this)); } else if (req->GetConnection()->IsClient() && GetSession(req)->client != NULL) @@ -154,7 +154,7 @@ RPCProxy::HOOK_Mismatch(FRT_RPCRequest *req) FRT_Supervisor::InvokeAsync(GetSession(req)->client->Owner(), GetSession(req)->client, req, 60.0, - new (req->GetMemoryTub()) + new (req->getStash()) ReqDone(*this)); } else { req->SetError(FRTE_RPC_CONNECTION); -- cgit v1.2.3