中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

江北区| 晋州市| 启东市| 白沙| 泸定县| 防城港市| 奉化市| 澜沧| 九龙县| 蒙城县| 类乌齐县| 舞阳县| 巴彦县| 浦县| 南投市| 烟台市| 开远市| 鄂托克前旗| 崇义县| 宾阳县| 三穗县| 甘泉县| 鄯善县| 浪卡子县| 伊通| 江孜县| 札达县| 平昌县| 鲁甸县| 崇阳县| 连云港市| 赤峰市| 盖州市| 日土县| 绵阳市| 上杭县| 肇东市| 五家渠市| 梁平县| 温州市| 施甸县|