=act #20447 fix UntypedActorWithStash javadoc
This commit is contained in:
parent
c3c8a0bc73
commit
0fdb72fd87
1 changed files with 4 additions and 4 deletions
|
|
@ -47,14 +47,14 @@ package akka.actor
|
|||
abstract class UntypedActorWithStash extends UntypedActor with Stash
|
||||
|
||||
/**
|
||||
* Actor base class with `Stash` that enforces an unbounded deque for the actor. The proper mailbox has to be configured
|
||||
* manually, and the mailbox should extend the [[akka.dispatch.DequeBasedMessageQueueSemantics]] marker trait.
|
||||
* Actor base class with `Stash` that enforces an unbounded deque for the actor.
|
||||
* See [[akka.actor.UntypedActorWithStash]] for details on how `Stash` works.
|
||||
*/
|
||||
abstract class UntypedActorWithUnboundedStash extends UntypedActor with UnboundedStash
|
||||
|
||||
/**
|
||||
* Actor base class with `Stash` that does not enforce any mailbox type. The mailbox of the actor has to be configured
|
||||
* manually. See [[akka.actor.UntypedActorWithStash]] for details on how `Stash` works.
|
||||
* Actor base class with `Stash` that does not enforce any mailbox type. The proper mailbox has to be configured
|
||||
* manually, and the mailbox should extend the [[akka.dispatch.DequeBasedMessageQueueSemantics]] marker trait.
|
||||
* See [[akka.actor.UntypedActorWithStash]] for details on how `Stash` works.
|
||||
*/
|
||||
abstract class UntypedActorWithUnrestrictedStash extends UntypedActor with UnrestrictedStash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue