blob: 125bb918766b47c65008230b68b49c378036fc29 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#ifndef LINK_SUBSCRIBER_H
#define LINK_SUBSCRIBER_H
#include <IceStorm/Flushable.h>
#include <IceStorm/Subscriber.h>
#include <IceStorm/IceStormInternal.h> // For TopicLink
namespace IceStorm
{
class LinkSubscriber : public Subscriber, public Flushable
{
public:
LinkSubscriber(const TraceLevelsPtr&, const TopicLinkPrx&, Ice::Int);
~LinkSubscriber();
virtual bool persistent() const;
virtual bool inactive() const;
virtual void unsubscribe();
virtual void replace();
virtual void publish(const Event&);
virtual void flush();
virtual bool operator==(const Flushable&) const;
private:
// Immutable
TopicLinkPrx _obj;
Ice::Int _cost;
};
} // End namespace IceStorm
#endif
|