-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
260 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
/** Odelay defines a set of primitives for delaying | ||
* the execution of operations. | ||
* | ||
* This is differs from scala.concurrent.Futures in that | ||
* the execution of an operation will not occur until a provided delay, specified | ||
* as a scala.concurrent.duration.Duration. The delay of a | ||
* task may also may be canceled. Operations may also be executed after a series | ||
* of delays, also represented by scala.concurrent.duration.Durations. | ||
* | ||
* These primitives can be used to complement the usage of scala.concurrent.Futures by defining | ||
* a deterministic delay for the future operation as well as a way | ||
* to cancel the future operation. | ||
* | ||
* An odelay.Delay represents a delayed operation and defines a future method which may be used to trigger dependent actions | ||
* and delay cancellations. | ||
*/ | ||
/** Odelay defines a set of primitives for delaying the execution of operations. | ||
* | ||
* This is differs from scala.concurrent.Futures in that the execution of an operation will not occur until a provided | ||
* delay, specified as a scala.concurrent.duration.Duration. The delay of a task may also may be canceled. Operations | ||
* may also be executed after a series of delays, also represented by scala.concurrent.duration.Durations. | ||
* | ||
* These primitives can be used to complement the usage of scala.concurrent.Futures by defining a deterministic delay | ||
* for the future operation as well as a way to cancel the future operation. | ||
* | ||
* An odelay.Delay represents a delayed operation and defines a future method which may be used to trigger dependent | ||
* actions and delay cancellations. | ||
*/ | ||
package object odelay |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.