// 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 #include #include #include #ifdef ANDROID #include "internal_android.hpp" #else #include "internal.hpp" #endif namespace vsomeip_v3 { struct debounce_filter_t; 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 > plugins_; int nice_level_; debounce_configuration_t debounces_; bool has_session_handling_; }; } // namespace cfg } // namespace vsomeip_v3 #endif // VSOMEIP_V3_CFG_APPLICATION_CONFIGURATION_HPP_