blob: 098bccf4d3710b3ff9e218dc8c1995b711904349 [file] [log] [blame]
// Copyright (C) 2014 BMW Group
// Author: Lutz Bichler (lutz.bichler@bmw.de)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef VSOMEIP_SD_SUBSCRIPTION_HPP
#define VSOMEIP_SD_SUBSCRIPTION_HPP
#include <memory>
#include <vsomeip/primitive_types.hpp>
namespace vsomeip {
class endpoint;
namespace sd {
class subscription {
public:
subscription(major_version_t _major, ttl_t _ttl,
std::shared_ptr<endpoint> _reliable,
std::shared_ptr<endpoint> _unreliable);
~subscription();
major_version_t get_major() const;
ttl_t get_ttl() const;
void set_ttl(ttl_t _ttl);
std::shared_ptr<endpoint> get_endpoint(bool _reliable) const;
void set_endpoint(std::shared_ptr<endpoint> _endpoint, bool _reliable);
bool is_acknowleged() const;
void set_acknowledged(bool _is_acknowledged);
private:
major_version_t major_;
ttl_t ttl_;
std::shared_ptr<endpoint> reliable_;
std::shared_ptr<endpoint> unreliable_;
bool is_acknowledged_;
};
} // namespace sd
} // namespace vsomeip
#endif // VSOMEIP_SD_SUBSCRIPTION_HPP