tdesktop/Telegram/SourceFiles/mtproto/facade.cpp

44 lines
737 B
C++
Raw Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "mtproto/facade.h"
2017-03-04 10:23:56 +00:00
#include "storage/localstorage.h"
#include "core/application.h"
2019-07-24 08:46:23 +00:00
#include "main/main_account.h"
namespace MTP {
2019-12-02 13:10:19 +00:00
namespace details {
2019-04-04 15:20:28 +00:00
namespace {
int PauseLevel = 0;
rpl::event_stream<> Unpaused;
2019-04-04 15:20:28 +00:00
} // namespace
bool paused() {
return PauseLevel > 0;
}
void pause() {
++PauseLevel;
}
void unpause() {
--PauseLevel;
if (!PauseLevel) {
Unpaused.fire({});
}
}
2016-02-23 09:52:18 +00:00
rpl::producer<> unpaused() {
return Unpaused.events();
}
} // namespace details
} // namespace MTP