forked from snakster/cpp.react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactor.h
More file actions
70 lines (52 loc) · 1.56 KB
/
Reactor.h
File metadata and controls
70 lines (52 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright Sebastian Jeckel 2014.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#pragma once
#ifndef REACT_DISABLE_REACTORS
#include "react/detail/Defs.h"
#include <functional>
#include <memory>
#include "react/common/Util.h"
#include "react/EventStream.h"
#include "react/detail/ReactiveBase.h"
#include "react/detail/ReactiveDomain.h"
#include "react/detail/graph/ReactorNodes.h"
/*****************************************/ REACT_BEGIN /*****************************************/
template <typename D>
class ReactiveLoop
{
public:
class Context;
using NodeT = REACT_IMPL::ReactorNode<D,Context>;
class Context
{
public:
Context(NodeT& node) :
node_{ node }
{
}
template <typename E>
E& Await(const Events<D,E>& evn)
{
return node_.Await<E>(evn.GetPtr());
}
template <typename E, typename F>
void RepeatUntil(const Events<D,E>& evn, F func)
{
node_.RepeatUntil<E>(evn.GetPtr(), func);
}
private:
NodeT& node_;
};
template <typename F>
ReactiveLoop(F&& func) :
nodePtr_{ new REACT_IMPL::ReactorNode<D, Context>(std::forward<F>(func)) }
{
nodePtr_->StartLoop();
}
private:
std::unique_ptr<NodeT> nodePtr_;
};
/******************************************/ REACT_END /******************************************/
#endif //REACT_DISABLE_REACTORS