Skip to content

Commit

Permalink
!typ Change the ActorContext#setReceiveTimeout's parameter name from …
Browse files Browse the repository at this point in the history
…d to receiveTimeout.
  • Loading branch information
He-Pin committed Nov 26, 2018
1 parent 8d4d62a commit 06d748f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -186,7 +186,7 @@ trait ActorContext[T] extends akka.actor.typed.ActorContext[T] {
* *Warning*: This method is not thread-safe and must not be accessed from threads other
* than the ordinary actor message processing thread, such as [[java.util.concurrent.CompletionStage]] callbacks.
*/
def setReceiveTimeout(d: Duration, msg: T): Unit
def setReceiveTimeout(receiveTimeout: Duration, msg: T): Unit

/**
* Cancel the sending of receive timeout notifications.
Expand Down
Expand Up @@ -167,7 +167,7 @@ trait ActorContext[T] extends akka.actor.typed.ActorContext[T] { this: akka.acto
* *Warning*: This method is not thread-safe and must not be accessed from threads other
* than the ordinary actor message processing thread, such as [[scala.concurrent.Future]] callbacks.
*/
def setReceiveTimeout(d: FiniteDuration, msg: T): Unit
def setReceiveTimeout(receiveTimeout: FiniteDuration, msg: T): Unit

/**
* Cancel the sending of receive timeout notifications.
Expand Down

0 comments on commit 06d748f

Please sign in to comment.