some cleanup after Viktor’s comments
- remove useless `cause` argument from some akka exceptions - improve names of some method arguments - eliminate some closure allocation
This commit is contained in:
parent
810d65068e
commit
6145d4313b
16 changed files with 41 additions and 46 deletions
|
|
@ -235,7 +235,7 @@ private[akka] class RemoteActorRef private[akka] (
|
|||
|
||||
def suspend(): Unit = sendSystemMessage(Suspend())
|
||||
|
||||
def resume(inResponseToFailure: Throwable): Unit = sendSystemMessage(Resume(inResponseToFailure))
|
||||
def resume(causedByFailure: Throwable): Unit = sendSystemMessage(Resume(causedByFailure))
|
||||
|
||||
def stop(): Unit = sendSystemMessage(Terminate())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue