Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jrudolph/futures-backport
A backport of scala.concurrent.Future (SIP-14) for Scala 2.9.2
https://github.com/jrudolph/futures-backport
Last synced: 25 days ago
JSON representation
A backport of scala.concurrent.Future (SIP-14) for Scala 2.9.2
- Host: GitHub
- URL: https://github.com/jrudolph/futures-backport
- Owner: jrudolph
- License: bsd-3-clause
- Created: 2013-09-09T12:31:02.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-09T12:34:36.000Z (about 11 years ago)
- Last Synced: 2023-07-05T15:36:46.792Z (over 1 year ago)
- Language: Scala
- Size: 145 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-scala
Awesome Lists containing this project
README
This project contains classes added to the Scala library to the `scala.concurrent` package between
Scala 2.9.2 and 2.9.3 (SIP-14 backport).See the license of the original code in LICENSE-scala.
When to use
-----------If for some reason you need to use the Scala library version 2.9.2 at runtime at can't
refrain from using classes from `scala.concurrent` like `Future`.Usage
-----Add
```scala
libraryDependencies += "net.virtual-void" %% "futures-backport" % "1"
```to your build. To use it with cross-building add these setting:
```scala
libraryDependencies <++= scalaVersion {
case "2.9.2" => Seq("net.virtual-void" %% "futures-backport" % "1")
case _ => Nil
}
```