rename akka.AkkaApplication to akka.actor.ActorSystem
Renaming it to System did not appeal after seeing that such a thing is already imported from Predef ...
This commit is contained in:
parent
c6e44ffef7
commit
945b1aedf9
79 changed files with 209 additions and 230 deletions
|
|
@ -8,7 +8,7 @@ import akka.event.Logging.Warning
|
|||
import java.util.concurrent.atomic.AtomicReference
|
||||
import java.util.concurrent.{ TimeUnit, ExecutorService, RejectedExecutionException, ConcurrentLinkedQueue }
|
||||
import akka.actor.{ ActorCell, ActorKilledException }
|
||||
import akka.AkkaApplication
|
||||
import akka.actor.ActorSystem
|
||||
|
||||
/**
|
||||
* Default settings are:
|
||||
|
|
@ -64,7 +64,7 @@ import akka.AkkaApplication
|
|||
* Larger values (or zero or negative) increase throughput, smaller values increase fairness
|
||||
*/
|
||||
class Dispatcher(
|
||||
_app: AkkaApplication,
|
||||
_app: ActorSystem,
|
||||
val name: String,
|
||||
val throughput: Int,
|
||||
val throughputDeadlineTime: Int,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue