~ubuntu-branches/ubuntu/quantal/zeroc-ice/quantal

« back to all changes in this revision

Viewing changes to src/IceGrid/ServerAdapterI.h

  • Committer: Bazaar Package Importer
  • Author(s): Francisco Moya
  • Date: 2008-02-12 16:28:20 UTC
  • mfrom: (4.1.5 hardy)
  • Revision ID: james.westby@ubuntu.com-20080212162820-x3e046s7nmabeswv
Tags: 3.2.1-8
Added -g to global compilation flags (Closes: #465074).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice is licensed to you under the terms described in the
6
6
// ICE_LICENSE file included in this distribution.
25
25
{
26
26
public:
27
27
    
28
 
    ServerAdapterI(const NodeIPtr&, ServerI*, const std::string&, const AdapterPrx&, const std::string&, Ice::Int);
 
28
    ServerAdapterI(const NodeIPtr&, ServerI*, const std::string&, const AdapterPrx&, const std::string&);
29
29
    virtual ~ServerAdapterI();
30
30
 
31
31
    virtual void activate_async(const AMD_Adapter_activatePtr& cb, const Ice::Current&);
33
33
    virtual void setDirectProxy(const ::Ice::ObjectPrx&, const ::Ice::Current& = Ice::Current());
34
34
    void destroy();
35
35
    void clear();
36
 
    void activationFailed(bool);
 
36
    void activationFailed(const std::string&);
37
37
 
38
38
    AdapterPrx getProxy() const;
39
39
 
45
45
    const std::string _id;
46
46
    const std::string _replicaId;
47
47
    ServerI* _server;
48
 
    const IceUtil::Time _waitTime;
49
48
 
50
49
    Ice::ObjectPrx _proxy;
51
50
    std::vector<AMD_Adapter_activatePtr> _activateCB;
 
51
    bool _activateAfterDeactivating;
52
52
};
53
53
typedef IceUtil::Handle<ServerAdapterI> ServerAdapterIPtr;
54
54