1. 30 Jan, 2014 2 commits
  2. 29 Jan, 2014 2 commits
  3. 28 Jan, 2014 6 commits
  4. 24 Jan, 2014 1 commit
    • Dominik Charousset's avatar
      re-renamed untyped_actor -> event_based_actor · 51494159
      Dominik Charousset authored
      with this patch, untyped_actor is called event_based_actor once more
      and blocking_untyped_actor has been renamed to blocking_actor;
      reason to this is, that untyped_actor is too general, as there
      are several other classes that are indeed untyped actors but do not
      inherit from event_based_actor (e.g. io::broker, actor_proxy)
      51494159
  5. 23 Jan, 2014 4 commits
  6. 22 Jan, 2014 4 commits
  7. 21 Jan, 2014 1 commit
  8. 20 Jan, 2014 2 commits
  9. 17 Jan, 2014 1 commit
  10. 15 Jan, 2014 1 commit
  11. 13 Jan, 2014 1 commit
  12. 10 Jan, 2014 1 commit
  13. 09 Jan, 2014 2 commits
  14. 07 Jan, 2014 1 commit
  15. 19 Dec, 2013 1 commit
  16. 17 Dec, 2013 1 commit
  17. 14 Dec, 2013 2 commits
  18. 09 Dec, 2013 1 commit
  19. 06 Dec, 2013 3 commits
  20. 05 Dec, 2013 2 commits
  21. 15 Nov, 2013 1 commit
    • Dominik Charousset's avatar
      preparations for 0.9 changes · 6773bedb
      Dominik Charousset authored
      this commit is the first part of a revision of libcppa that removes
      the thread-local `self` pointer, `actor_ptr`, and `channel_ptr`
      to pave the way for fully type-safe actor programming;
      this first step splits the addressing of actors into an `actor`
      handle and an `actor_addr`: only the former can be used to send
      messages, whereas the latter can only be used to monitor or identify
      actors;
      next steps will add `typed_actor<>` handles that allow the compiler
      to type-check the message passing interface;
      the revision is work in progress and this commit does not compile
      6773bedb