diff options
author | Ivo van Dongen <info@ivovandongen.nl> | 2017-07-21 12:32:13 +0300 |
---|---|---|
committer | Ivo van Dongen <ivovandongen@users.noreply.github.com> | 2017-07-24 19:30:02 +0300 |
commit | 5ee05a7781396004cb617002b6cbe8b7402616a6 (patch) | |
tree | 42ebf5c06b1cb71a05f4386ee557fcf922eb65f5 /test | |
parent | 81e9ed7fdd65ca4816ac6a76139d6c18d5182a21 (diff) | |
download | qtlocation-mapboxgl-5ee05a7781396004cb617002b6cbe8b7402616a6.tar.gz |
[core] make actor self reference optional
Diffstat (limited to 'test')
-rw-r--r-- | test/actor/actor.test.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/actor/actor.test.cpp b/test/actor/actor.test.cpp index 2b4c83f566..39d7ff81f4 100644 --- a/test/actor/actor.test.cpp +++ b/test/actor/actor.test.cpp @@ -305,3 +305,34 @@ TEST(Actor, Ask) { ASSERT_EQ(std::future_status::ready, status); ASSERT_EQ(2, result.get()); } + +TEST(Actor, NoSelfActorRef) { + // Not all actors need a reference to self + + // Trivially constructable + struct Trivial {}; + + ThreadPool pool { 2 }; + Actor<Trivial> trivial(pool); + + + // With arguments + struct WithArguments { + std::promise<void> promise; + + WithArguments(std::promise<void> promise_) + : promise(std::move(promise_)) { + } + + void receive() { + promise.set_value(); + } + }; + + std::promise<void> promise; + auto future = promise.get_future(); + Actor<WithArguments> withArguments(pool, std::move(promise)); + + withArguments.invoke(&WithArguments::receive); + future.wait(); +} |