+act - 15757 - Changes the signature of ActorSystem.terminate() and ActorSystem.whenTerminated() to be of Future[Terminated] iso Future[Unit]
This commit is contained in:
parent
cd8e97c060
commit
b8c634451f
5 changed files with 22 additions and 17 deletions
|
|
@ -135,7 +135,7 @@ private[akka] class RemoteActorRefProvider(
|
|||
override def rootGuardian: InternalActorRef = local.rootGuardian
|
||||
override def guardian: LocalActorRef = local.guardian
|
||||
override def systemGuardian: LocalActorRef = local.systemGuardian
|
||||
override def terminationFuture: Future[Unit] = local.terminationFuture
|
||||
override def terminationFuture: Future[Terminated] = local.terminationFuture
|
||||
override def registerTempActor(actorRef: InternalActorRef, path: ActorPath): Unit = local.registerTempActor(actorRef, path)
|
||||
override def unregisterTempActor(path: ActorPath): Unit = local.unregisterTempActor(path)
|
||||
override def tempPath(): ActorPath = local.tempPath()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue