Files
MuditaOS/module-db/queries/messages/threads/QueryThreadsGetCount.cpp
Michał Kamoń ad52bab728 [EGD-6283] Fix to slow Application Desktop start
ApplicationDesktop start was slowed down by two synchronous DB calls:
-get unread threads count
-get unread calls count
Both were replaced with asynch versions.
2021-03-26 08:19:27 +01:00

35 lines
922 B
C++

// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#include "QueryThreadsGetCount.hpp"
db::query::ThreadGetCount::ThreadGetCount(EntryState state) : Query(Query::Type::Read), state(state)
{}
auto db::query::ThreadGetCount::debugInfo() const -> std::string
{
return "SMSThreadGetCount";
}
auto db::query::ThreadGetCount::getState() const noexcept -> EntryState
{
return state;
}
db::query::ThreadGetCountResult::ThreadGetCountResult(EntryState state, unsigned count) : state(state), count(count)
{}
auto db::query::ThreadGetCountResult::getCount() const noexcept -> unsigned
{
return count;
}
auto db::query::ThreadGetCountResult::getState() const noexcept -> EntryState
{
return state;
}
[[nodiscard]] auto db::query::ThreadGetCountResult::debugInfo() const -> std::string
{
return "SMSThreadGetCountResult";
}