91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Scala flatMap的變體

發布時間:2020-05-09 17:56:00 來源:網絡 閱讀:609 作者:金明略 欄目:開發技術

      今天看到了flatMap的變體flatMapM

flatMapM {

  _.map(getUserWithKey).getOrElse(Future.failed(UnavailableUserKey))……


點進去后看發現:

/**
 * Like flatMap but allows the flatMap function to execute asynchronously.
 *
 * @param f the async function to produce a new body parser from the result of this body parser
 * @param ec The context to execute the supplied function with.
 *        The context is prepared on the calling thread.
 * @return the transformed body parser
 * @see [[flatMap]]
 @see [[play.api.libs.iteratee.Iteratee#flatMapM]]
 */
def flatMapM[B](f: => Future[BodyParser[B]])(implicit ec: ExecutionContext): BodyParser[B] = {
  // prepare execution context as body parser object may cross thread boundary
  implicit val pec = ec.prepare()
  new BodyParser[B] {
    def apply(request: RequestHeader) = self(request).flatMapM {
      case Right(a) =>
        f(a).map { _.apply(request) }(pec)
      case left =>
        Future.successful {
          Done[Array[Byte], Either[Result, B]](left.asInstanceOf[Either[Result, B]])
        }
    }(pec)
    override def toString = self.toString
  }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

九龙城区| 定南县| 招远市| 工布江达县| 聊城市| 都江堰市| 嘉禾县| 宜章县| 安化县| 濮阳县| 永丰县| 青铜峡市| 吉首市| 建昌县| 阿克陶县| 广东省| 古浪县| 南阳市| 林周县| 北安市| 双鸭山市| 深圳市| 贡嘎县| 莎车县| 清水河县| 和平县| 嘉禾县| 桐梓县| 盐亭县| 雷波县| 青神县| 西平县| 建湖县| 靖远县| 岢岚县| 邮箱| 疏勒县| 合山市| 呼伦贝尔市| 浮山县| 商丘市|