Project 'savoirfairelinux/ring-daemon' was moved to 'savoirfairelinux/jami-daemon'. Please update any links and bookmarks that may still have the old path.
Select Git revision
-
* Avoid message accumulation by not persisting the state of failed and sent messages, which are already saved by clients. Clients are still able to know the state of a sent/failed message sent during the same session, and are expected to catch and persist the message state signal to know when a message failed or was successfully sent across daemon restarts. * Save pending messages at every state change and don't delete the previous file to avoid loosing the message state in case of crash. * Make message saving asynchronous to avoid a slow/high latency storage device to block the UI or DHT at every message Change-Id: I96221152a86990c8e9f1be13903a675a87e4e975 Reviewed-by:
Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
* Avoid message accumulation by not persisting the state of failed and sent messages, which are already saved by clients. Clients are still able to know the state of a sent/failed message sent during the same session, and are expected to catch and persist the message state signal to know when a message failed or was successfully sent across daemon restarts. * Save pending messages at every state change and don't delete the previous file to avoid loosing the message state in case of crash. * Make message saving asynchronous to avoid a slow/high latency storage device to block the UI or DHT at every message Change-Id: I96221152a86990c8e9f1be13903a675a87e4e975 Reviewed-by:
Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
dbuserrorhandlerdefault.cpp 1.65 KiB
/****************************************************************************
* Copyright (C) 2015-2018 Savoir-faire Linux *
* Author : Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>*
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#include "dbuserrorhandlerdefault.h"
namespace Interfaces {
void
DBusErrorHandlerDefault::connectionError(const QString& error)
{
qDebug() << error;
throw error.toLatin1().constData();
}
void
DBusErrorHandlerDefault::invalidInterfaceError(const QString& error)
{
qDebug() << error;
throw error.toLatin1().constData();
}
} // namespace Interfaces