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

almond.interpreter.util.CancellableFuture.scala Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package almond.interpreter.util

import scala.concurrent.Future

final case class CancellableFuture[+T](
  future: Future[T],
  cancel: () => Unit
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy