餘米嘗試在http://dispatch-classic.databinder.net/Choose+an+Executor.html給出了調度,NIO的例子: 實例給出:錯誤調度,NIO沒有找到
import dispatch._
val h = new nio.Http
val f = h(url("http://www.scala-lang.org/") as_str)
我的代碼:
import dispatch._
val h = new nio.Http
var host = "http://www.scala-lang.org";
val f: Future[String] = h(url("http://www.scala-lang.org/") as_str)
f.apply();
但事實並非如此識別nio和as_str關鍵字。任何人都可以請建議會是什麼問題?
什麼在你的build.sbt? – Callum
名稱:= 「空白」 版本:= 「1.0-快照」 scalaVersion:= 「2.10.2」 解析器+ = 「類型安全庫」 在「http://repo.typesafe.com/typesafe/釋放/ 「 libraryDependencies ++ = SEQ( \t 」org.scalatest「 % 」scalatest_2.10「 % 」1.9.1「 % 」測試「 ) libraryDependencies ++ = SEQ( 」 net.databinder 「%%」dispatch「%」0.8.10「 ) libraryDependencies ++ = Seq( 「net.databinder.dispatch」 %% 「派遣核」 % 「0.11.2」 ) libraryDependencies ++ = SEQ( 「net.databinder」 %% 「派遣-HTTP」 % 「0.8.10」 ) libraryDependencies ++ = SEQ( 「net.databinder」 %% 「調度-妞妞」 % 「0.8.10」 ) – DSKVP
嘗試改變調度-nio的依賴,從我的答案和進口dispatch.classic之一。 _代碼 – Callum