-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhost_controller_executor.cpp
35 lines (27 loc) · 1.06 KB
/
host_controller_executor.cpp
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
#include <memory>
#include <string>
#include <vector>
#include <cereal/archives/binary.hpp>
#include <cppless/dispatcher/aws-lambda.hpp>
#include <cppless/dispatcher/common.hpp>
#include <cppless/graph/execution.hpp>
#include <cppless/graph/graph.hpp>
#include <cppless/graph/host_controller_executor.hpp>
#include <nlohmann/json.hpp>
using dispatcher = cppless::aws_lambda_dispatcher;
using executor = cppless::executor::host_controller_executor<dispatcher>;
__attribute((weak)) auto main(int /*argc*/, char* /*argv*/[]) -> int
{
using cppless::execution::schedule, cppless::execution::then;
cppless::aws::lambda::client lambda_client;
auto key = lambda_client.create_derived_key_from_env();
auto local = std::make_shared<dispatcher>("", lambda_client, key);
// 100 tasks executed serially
cppless::graph::builder<executor> builder {local};
auto q = schedule(builder);
auto asd = then(q, []() { return 12; });
cppless::shared_future<int> m =
then(asd, [](int m) { return m + 1; })->future();
builder.await_all();
std::cout << m.value() << std::endl;
}