blob: 1d666af5a37e1b4085b919c6169e6bcc10f55c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <Glacier2/ServerBlobject.h>
using namespace std;
using namespace Ice;
using namespace Glacier2;
Glacier2::ServerBlobject::ServerBlobject(const InstancePtr& instance, const ConnectionPtr& connection) :
Glacier2::Blobject(instance, connection, Ice::Context())
{
}
Glacier2::ServerBlobject::~ServerBlobject()
{
}
void
Glacier2::ServerBlobject::ice_invoke_async(const Ice::AMD_Object_ice_invokePtr& amdCB,
const std::pair<const Byte*, const Byte*>& inParams,
const Current& current)
{
ObjectPrx proxy = _reverseConnection->createProxy(current.id);
assert(proxy);
invoke(proxy, amdCB, inParams, current);
}
|