tweak startup and linger times

This commit is contained in:
Dennis Klein
2017-04-20 17:51:10 +02:00
committed by Mohammad Al-Turany
parent bbc8da54b4
commit f39b41d68c
6 changed files with 44 additions and 4 deletions

View File

@@ -18,6 +18,16 @@ namespace test
class Push : public FairMQDevice
{
protected:
auto Init() -> void override
{
std::this_thread::sleep_for(std::chrono::milliseconds(200));
}
auto Reset() -> void override
{
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
auto Run() -> void override
{
auto msg = FairMQMessagePtr{NewMessage()};