swift
corefacadeconfig.cpp
1 // SPDX-FileCopyrightText: Copyright (C) 2013 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 namespace swift::core
7 {
8  bool CCoreFacadeConfig::requiresDBusSever() const { return m_contextMode == LocalInDBusServer; }
9 
10  bool CCoreFacadeConfig::requiresDBusConnection() const { return m_contextMode == Remote; }
11 } // namespace swift::core
bool requiresDBusSever() const
Requires server (at least one in server)?
bool requiresDBusConnection() const
Requires DBus connection (at least one remote)?
@ Remote
context runs in a different process.
@ LocalInDBusServer
context runs in same process.
Backend services of the swift project, like dealing with the network or the simulators.
Definition: actionbind.cpp:7