All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalajs.linker.package.scala Maven / Gradle / Ivy

There is a newer version: 1.17.0
Show newest version
/*
 * Scala.js (https://www.scala-js.org/)
 *
 * Copyright EPFL.
 *
 * Licensed under Apache License 2.0
 * (https://www.apache.org/licenses/LICENSE-2.0).
 *
 * See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 */

package org.scalajs

import scala.concurrent._

import scala.util.{Try, Success, Failure}

package object linker {
  private[linker] implicit class FutureOps[T](private val self: Future[T])
      extends AnyVal {

    def transformWith[S](f: Try[T] => Future[S])(implicit ec: ExecutionContext): Future[S] =
      self.map[Try[T]](Success(_)).recover { case t => Failure(t) }.flatMap(f)

    def finallyWith(f: => Future[Unit])(implicit ec: ExecutionContext): Future[T] = {
      self.transformWith {
        case Success(x) =>
          f.map(_ => x)

        case Failure(vt) =>
          f.transform(_  => throw vt, ft => { ft.addSuppressed(vt); ft })
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy