Last active
June 29, 2016 22:49
-
-
Save leogrim/ac074bc519ef1424ad5afa32923ef248 to your computer and use it in GitHub Desktop.
Juggle - Concurrent Task Processing With a Single Actor - https://medium.com/kifi-engineering/juggle-concurrent-task-processing-with-a-single-actor-ed9f33c713cf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected val minConcurrentTasks: Int | |
protected val maxConcurrentTasks: Int | |
protected def pullTasks(limit: Int): Future[Seq[T]] | |
protected def processTasks(tasks: Seq[T]): Map[T, Future[Unit]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment