vsomeip-sys 0.6.0

Somewhat low level unsafe wrapper around vsomeip
// Copyright (C) 2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// 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_V3_CFG_APPLICATION_CONFIGURATION_HPP_
#define VSOMEIP_V3_CFG_APPLICATION_CONFIGURATION_HPP_

#include <map>
#include <set>

#include <vsomeip/primitive_types.hpp>
#include <vsomeip/plugin.hpp>

#include "debounce_filter_impl.hpp"

namespace vsomeip_v3 {

namespace cfg {

struct application_configuration {
    client_t client_;
    std::size_t max_dispatchers_;
    std::size_t max_dispatch_time_;
    std::size_t thread_count_;
    std::size_t request_debouncing_;
    std::map<plugin_type_e, std::set<std::string> > plugins_;
    int nice_level_;
    debounce_configuration_t debounces_;
    bool has_session_handling_;
};

} // namespace cfg
} // namespace vsomeip_v3

#endif // VSOMEIP_V3_CFG_APPLICATION_CONFIGURATION_HPP_