aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/examples
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-01-13 00:02:55 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-01-13 00:02:55 +0100
commitbdfd0e49219fc4603a4946ad99b6336864998e71 (patch)
treef286813759903dd72b8788ae78f1bd19eedf8b1a /fnet/src/examples
parent60db71c43a6ee5cc56aeb9cd88602e2f60e0c93c (diff)
replace memorytub with Stash.
Diffstat (limited to 'fnet/src/examples')
-rw-r--r--fnet/src/examples/frt/rpc/rpc_proxy.cpp4
1 files changed, 2 insertions, 2 deletions
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);