aboutsummaryrefslogtreecommitdiffstats
path: root/tests/active_test.cpp
blob: d907a1ccf4b45c4dfbb00d682a558ee3486b25aa (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
39
40
41
42
43
44
45
46
/** ---------------------------------------------------------------------------
 * @file: test.cpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#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;
}