summaryrefslogtreecommitdiff
path: root/implementation/service_discovery/include/subscription.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/service_discovery/include/subscription.hpp')
-rw-r--r--implementation/service_discovery/include/subscription.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/implementation/service_discovery/include/subscription.hpp b/implementation/service_discovery/include/subscription.hpp
index c710b9d..bda9698 100644
--- a/implementation/service_discovery/include/subscription.hpp
+++ b/implementation/service_discovery/include/subscription.hpp
@@ -20,8 +20,7 @@ class subscription {
public:
subscription(major_version_t _major, ttl_t _ttl,
std::shared_ptr<endpoint> _reliable,
- std::shared_ptr<endpoint> _unreliable,
- client_t _target);
+ std::shared_ptr<endpoint> _unreliable);
~subscription();
major_version_t get_major() const;
@@ -30,7 +29,7 @@ public:
std::shared_ptr<endpoint> get_endpoint(bool _reliable) const;
void set_endpoint(std::shared_ptr<endpoint> _endpoint, bool _reliable);
- bool is_acknowleged() const;
+ bool is_acknowledged() const;
void set_acknowledged(bool _is_acknowledged);
private: