summaryrefslogtreecommitdiff
path: root/include/mbgl/actor
Commit message (Collapse)AuthorAgeFilesLines
* [core] Actor/ActorRef - ask calls to void methodsIvo van Dongen2017-09-221-0/+26
| | | | - allows to wait for execution of void methods as well as non-void methods
* [core] current schedulerIvo van Dongen2017-08-091-6/+9
| | | | - Adds a way to set the current scheduler on the thread to be used whenever a mailbox is created that needs to reply on this thread
* [core] make actor self reference optional - againIvo van Dongen2017-08-081-2/+7
| | | | - uses a different method of constructor selection that also works on Apple clang < 8.2.
* [core] Removed unused constructorupstream/tvn-test-ci-time-outThiago Marcos P. Santos2017-08-071-8/+0
| | | | | | | | | | Not in use at the moment, was causing a compiler error on Apple LLVM version 8.0.0 (clang-800.0.42.1). ``` src/mbgl/sprite/sprite_loader.cpp:25:11: error: call to constructor of 'Actor<mbgl::SpriteLoaderWorker>' is ambiguous ```
* [core] make actor self reference optionalIvo van Dongen2017-07-241-3/+15
|
* [core] add ask pattern to actor refIvo van Dongen2017-07-241-0/+21
|
* [core] implement ask pattern in actorIvo van Dongen2017-07-242-0/+46
|
* [core] Store pointer instead of referect to the Object in ActorRefThiago Marcos P. Santos2017-06-261-3/+3
| | | | | | | | | | | GCC complains about implicitly deleted assigment constructor when trying to do this: void setResourceTransform(optional<ActorRef<ResourceTransform>> transform) { resourceTransform = transform; } optional<ActorRef<ResourceTransform>> resourceTransform;
* [core] Make the mbgl/actor headers publicThiago Marcos P. Santos2017-06-263-0/+168
| | | | | They will be needed by the DefaultFileSource, something that we also export as public.
* [core] allow self closing mailbox/actorIvo van Dongen2017-05-271-1/+1
|
* [core] Block in Mailbox::close() until neither receive nor push are in progressJohn Firebaugh2017-05-241-2/+4
| | | | | | | | | | | | | | Otherwise, an ActorRef that's in the process of sending a message could attempt to access an invalid Scheduler reference: Thread 1 Thread 2 -------------------------------------------------- Scheduler::Scheduler Actor::Actor weakMailbox.lock() Actor::~Actor Scheduler::~Scheduler mailbox->push() scheduler.schedule() 💣
* [core] Move actor/{mailbox,scheduler}.hpp to public include directoryJohn Firebaugh2017-03-282-0/+71
Map constructor takes Scheduler&, and consumers are expected to define an implementation. Therefore the interface must be public.