Skip to content
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 780 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 780 Bytes

Actor Commons

This project contains code which Actor team uses in its projects.

If you with to add all common libraries, put the following to your build.sbt:

libraryDependencies += "im.actor" %% "actor-commons" % 0.0.6

Concurrent

Contains code which helps to deal with concurrency.

  • ActorFutures trait helps to handle Future result in Actor's receive loop.
  • FutureExt contains function for to processing sequence of futures in sequential order.
libraryDependencies += "im.actor" %% "actor-concurrent" % 0.0.6