这是来自https://github.com/eigengo/activator-spray-twitter/blob/master/src/main/scala/core/tweetstream.scala
的代码什么〜>(波浪号箭头)运算符呢?我认为必须是HttpRequest的运算符,但我在喷涂API中找不到这样的运算符。
我可以看出authorize是一个返回的函数(HttpRequest => HttpRequest),所以val rq必须是一个HttpRequest,它在由authorize的返回函数应用后返回值。
def receive: Receive = {
case query: String =>
val body = HttpEntity(ContentType(MediaTypes.`application/x-www-form-urlencoded`), s"track=$query")
val rq = HttpRequest(HttpMethods.POST, uri = uri, entity = body) ~> authorize
sendTo(io).withResponsesReceivedBy(self)(rq)
case ChunkedResponseStart(_) =>
case MessageChunk(entity, _) => TweetUnmarshaller(entity).fold(_ => (), processor !)
case _ =>
}
提前致谢!
答案 0 :(得分:3)
运算符只是一个函数,它是隐式定义的,请参阅line 32 here。
将其视为撰写。操作符将值取向左侧,并将其作为输入填充到右侧的函数中。
如何为自己找到这些内容的提示:将项目加载到intellij idea或scala-IDE中,然后按住Ctrl键单击符号。 IDE将带您进入定义。