Adding support for BoundedTransferQueue to EBEDD
This commit is contained in:
parent
db5a8c1b6a
commit
4841996520
7 changed files with 60 additions and 29 deletions
|
|
@ -6,12 +6,12 @@ package se.scalablesolutions.akka.dispatch
|
|||
|
||||
import java.util.List
|
||||
|
||||
import se.scalablesolutions.akka.util.{HashCode, Logging}
|
||||
import se.scalablesolutions.akka.actor.{Actor, ActorRef, ActorInitializationException}
|
||||
|
||||
import org.multiverse.commitbarriers.CountDownCommitBarrier
|
||||
import se.scalablesolutions.akka.AkkaException
|
||||
import java.util.concurrent.{ConcurrentSkipListSet}
|
||||
import se.scalablesolutions.akka.util.{Duration, HashCode, Logging}
|
||||
|
||||
/**
|
||||
* @author <a href="http://jonasboner.com">Jonas Bonér</a>
|
||||
|
|
@ -66,6 +66,10 @@ trait MessageQueue {
|
|||
def append(handle: MessageInvocation)
|
||||
}
|
||||
|
||||
/* Tells the dispatcher that it should create a bounded mailbox with the specified push timeout
|
||||
*/
|
||||
case class BoundedMailbox(capacity: Int, pushTimeOut: Option[Duration])
|
||||
|
||||
/**
|
||||
* @author <a href="http://jonasboner.com">Jonas Bonér</a>
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue