aboutsummaryrefslogtreecommitdiffstats
path: root/tests/activetest.cpp
blob: 74e72f544478b10323c630409fcabba141954900 (plain)
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
#include <yage.h>

#include <iostream>

using namespace yage;

void print_random()
{
    std::cout << "hello world"
              << "\n";
}

void print_h()
{
    std::cout << "Helllllllo"
              << "\n";
}

void flush()
{
    std::cout << "flush" << std::endl;
}

int main()
{
    auto a = Active::create();

    a->send(print_random);
    a->send(print_h);
    a->send(flush);

    std::cout << std::endl;

    for (int i = 0; i < 1000000; i++) {
    }

    std::cout << std::endl;
}