aboutsummaryrefslogtreecommitdiffstats
path: root/tests/active_test.cpp
blob: 5b6a24c9a6f10116df0e5ff63ddf0ed3bd6aef01 (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
47
/** ---------------------------------------------------------------------------
 * -*- c++ -*-
 * @file: active_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;
}