GitHub - actorapp/commons: Common code which Actor team uses in its projects

Skip to content

Navigation Menu

Sign in

Appearance settings

This repository was archived by the owner on Feb 17, 2023. It is now read-only.

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