danicoin/src/System/ContextGroup.h

29 lines
711 B
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-09-15 10:48:45 +00:00
#pragma once
2015-07-30 15:22:07 +00:00
#include <System/Dispatcher.h>
2015-05-27 12:08:46 +00:00
namespace System {
2015-07-30 15:22:07 +00:00
class ContextGroup {
2014-09-15 10:48:45 +00:00
public:
2015-07-30 15:22:07 +00:00
explicit ContextGroup(Dispatcher& dispatcher);
ContextGroup(const ContextGroup&) = delete;
ContextGroup(ContextGroup&& other);
~ContextGroup();
ContextGroup& operator=(const ContextGroup&) = delete;
ContextGroup& operator=(ContextGroup&& other);
void interrupt();
void spawn(std::function<void()>&& procedure);
2014-09-15 10:48:45 +00:00
void wait();
private:
Dispatcher* dispatcher;
2015-07-30 15:22:07 +00:00
NativeContextGroup contextGroup;
2014-09-15 10:48:45 +00:00
};
}