2011-04-11 17:08:10 +02:00
|
|
|
package akka.dispatch
|
|
|
|
|
|
|
|
|
|
import akka.actor.Actor._
|
|
|
|
|
import akka.actor.Actor
|
|
|
|
|
import org.scalatest.WordSpec
|
|
|
|
|
import org.scalatest.matchers.MustMatchers
|
|
|
|
|
import java.util.concurrent.CountDownLatch
|
|
|
|
|
|
|
|
|
|
class PriorityDispatcherSpec extends WordSpec with MustMatchers {
|
|
|
|
|
|
|
|
|
|
"A PriorityExecutorBasedEventDrivenDispatcher" must {
|
|
|
|
|
"Order it's messages according to the specified comparator using an unbounded mailbox" in {
|
|
|
|
|
testOrdering(UnboundedMailbox(false))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"Order it's messages according to the specified comparator using a bounded mailbox" in {
|
|
|
|
|
testOrdering(BoundedMailbox(false,1000))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def testOrdering(mboxType: MailboxType) {
|
|
|
|
|
val dispatcher = new PriorityExecutorBasedEventDrivenDispatcher("Test",
|
|
|
|
|
PriorityGenerator({
|
|
|
|
|
case i: Int => i //Reverse order
|
|
|
|
|
case 'Result => Int.MaxValue
|
|
|
|
|
}: Any => Int),
|
|
|
|
|
throughput = 1,
|
|
|
|
|
mailboxType = mboxType
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
val actor = actorOf(new Actor {
|
|
|
|
|
self.dispatcher = dispatcher
|
|
|
|
|
var acc: List[Int] = Nil
|
|
|
|
|
|
|
|
|
|
def receive = {
|
|
|
|
|
case i: Int => acc = i :: acc
|
|
|
|
|
case 'Result => self reply_? acc
|
|
|
|
|
}
|
2011-04-12 09:55:32 +02:00
|
|
|
}).start()
|
2011-04-11 17:08:10 +02:00
|
|
|
|
|
|
|
|
dispatcher.suspend(actor) //Make sure the actor isn't treating any messages, let it buffer the incoming messages
|
|
|
|
|
|
|
|
|
|
val msgs = (1 to 100).toList
|
|
|
|
|
for(m <- msgs) actor ! m
|
|
|
|
|
|
|
|
|
|
dispatcher.resume(actor) //Signal the actor to start treating it's message backlog
|
|
|
|
|
|
|
|
|
|
actor.!!![List[Int]]('Result).await.result.get must be === (msgs.reverse)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|