Changed Failed to be a SystemMessage
- Moved system messages to their own package. - All queueing operations are now hidden behind a SystemMessageList value class - Introduced dual SystemMessageList types to encode the ordering in the type. - Protects against accidentally missed reverse calls or accidentally reversed lists - Makes ordering expectations by fields/parameters explicit - Fixed serialization tests - Fixes to logging in HierarchyStressSpec
This commit is contained in:
parent
bf813d8406
commit
f8c3717ca1
34 changed files with 636 additions and 250 deletions
|
|
@ -10,7 +10,8 @@ import java.util.concurrent.locks.ReentrantLock
|
|||
import scala.annotation.tailrec
|
||||
import com.typesafe.config.Config
|
||||
import akka.actor.{ ActorInitializationException, ExtensionIdProvider, ExtensionId, Extension, ExtendedActorSystem, ActorRef, ActorCell }
|
||||
import akka.dispatch.{ MessageQueue, MailboxType, TaskInvocation, SystemMessage, Suspend, Resume, MessageDispatcherConfigurator, MessageDispatcher, Mailbox, Envelope, DispatcherPrerequisites, DefaultSystemMessageQueue }
|
||||
import akka.dispatch.{ MessageQueue, MailboxType, TaskInvocation, MessageDispatcherConfigurator, MessageDispatcher, Mailbox, Envelope, DispatcherPrerequisites, DefaultSystemMessageQueue }
|
||||
import akka.dispatch.sysmsg.{ SystemMessage, Suspend, Resume }
|
||||
import scala.concurrent.duration._
|
||||
import akka.util.Switch
|
||||
import scala.concurrent.duration.Duration
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue