aboutsummaryrefslogtreecommitdiffstats
path: root/Rx/v2/examples/doxygen/take.cpp
blob: be3be2479335dc5b755720d77e20fe33502611cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "rxcpp/rx.hpp"

#include "rxcpp/rx-test.hpp"
#include "catch.hpp"


SCENARIO("take sample"){
    printf("//! [take sample]\n");
    auto values = rxcpp::observable<>::range(1, 7).take(3);
    values.
        subscribe(
            [](int v){printf("OnNext: %d\n", v);},
            [](){printf("OnCompleted\n");});
    printf("//! [take sample]\n");
}