मुझे यकीन है कि है कि आप क्या देख रहे हैं नहीं कर रहा हूँ, लेकिन वहाँ काफी धूमकेतु की घड़ी नमूने में एक सरल उपाय है, कि तुम AKKA अभिनेताओं उपयोग करने के लिए अनुकूलित कर सकते हैं। यह लंबे मतदान के बजाय एक अनंत iframe का उपयोग करता है। मैंने एक और जटिल अनुप्रयोग के लिए एक अनुकूलित संस्करण का उपयोग किया है जो कई डीबी कॉल कर रहा है और AKKA अभिनेताओं में लंबी गणना करता है और यह ठीक काम करता है।
def enum = Action {
//get your actor
val myActorRef = Akka.system.actorOf(Props[TestActor])
//do some query to your DB here. Promise.timeout is to simulate a blocking call
def getDatabaseItem(id: Int): Promise[String] = { Promise.timeout("test", 10 milliseconds) }
//test iterator, you will want something smarter here
val items1 = 1 to 10 toIterator
// this is a very simple enumerator that takes ints from an existing iterator (for an http request parameters for instance) and do some computations
def myEnum(it: Iterator[Int]): Enumerator[String] = Enumerator.fromCallback[String] {() =>
if (!items1.hasNext)
Promise.pure[Option[String]](None) //we are done with our computations
else {
// get the next int, query the database and compose the promise with a further query to the AKKA actor
getDatabaseItem(items1.next).flatMap { dbValue =>
implicit val timeout = new Timeout(10 milliseconds)
val future = (myActorRef ? dbValue) mapTo manifest[String]
// here we convert the AKKA actor to the right Promise[Option] output
future.map(v => Some(v)).asPromise
}
}
}
// finally we stream the result to the infinite iframe.
// console.log is the javascript callback, you will want something more interesting.
Ok.stream(myEnum(items1) &> Comet(callback = "console.log"))
}
ध्यान दें कि यह fromCallback आप "andthen" के साथ प्रगणक गठबंधन करने के लिए अनुमति नहीं है, वहाँ play2 के ट्रंक संस्करण एक generateM विधि है कि अधिक उपयुक्त आप संयोजनों का उपयोग करना चाहते हैं, तो हो सकता है में है।
यह लंबे मतदान नहीं है, लेकिन यह ठीक काम करता है।