Copyright | Copyright (c) 2009-2014, David Sorokin <david.sorokin@gmail.com> |
---|---|
License | BSD3 |
Maintainer | David Sorokin <david.sorokin@gmail.com> |
Stability | experimental |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Tested with: GHC 7.8.3
The Task
value represents a process that was already started in background.
We can check the completion of the task, receive notifications about changing
its state and even suspend an outer process awaiting the final result of the task.
It complements the Process
monad as it allows immediately continuing the main
computation without suspension.
- data Task a
- data TaskResult a
- taskId :: Task a -> ProcessId
- tryGetTaskResult :: Task a -> Event (Maybe (TaskResult a))
- taskResult :: Task a -> Process (TaskResult a)
- taskResultReceived :: Task a -> Signal (TaskResult a)
- taskProcess :: Task a -> Process a
- cancelTask :: Task a -> Event ()
- taskCancelled :: Task a -> Event Bool
- runTask :: Process a -> Event (Task a)
- runTaskUsingId :: ProcessId -> Process a -> Event (Task a)
- spawnTask :: Process a -> Process (Task a)
- spawnTaskUsingId :: ProcessId -> Process a -> Process (Task a)
- spawnTaskWith :: ContCancellation -> Process a -> Process (Task a)
- spawnTaskUsingIdWith :: ContCancellation -> ProcessId -> Process a -> Process (Task a)
- enqueueTask :: Double -> Process a -> Event (Task a)
- enqueueTaskUsingId :: Double -> ProcessId -> Process a -> Event (Task a)
Task
data TaskResult a Source
Represents the result of the task.
TaskCompleted a | the task was successfully completed and it returned the specified result |
TaskError IOException | the specified exception was raised when performing the task. |
TaskCancelled | the task was cancelled |
taskId :: Task a -> ProcessId Source
Return an identifier for the process that was launched in background for this task.
tryGetTaskResult :: Task a -> Event (Maybe (TaskResult a)) Source
Try to get the task result immediately without suspension.
taskResult :: Task a -> Process (TaskResult a) Source
Return the task result suspending the outer process if required.
taskResultReceived :: Task a -> Signal (TaskResult a) Source
Return a signal that notifies about receiving the result of the task.
taskProcess :: Task a -> Process a Source
Return an outer process that behaves like the task itself except for one thing: if the outer process is cancelled then it is not enough to cancel the task.
cancelTask :: Task a -> Event () Source
Cancel the task.
taskCancelled :: Task a -> Event Bool Source
Test whether the task was cancelled.
Running Task
runTask :: Process a -> Event (Task a) Source
Run the process in background and return the corresponded task immediately.
runTaskUsingId :: ProcessId -> Process a -> Event (Task a) Source
Run the process with the specified identifier in background and return the corresponded task immediately.
Spawning Tasks
spawnTask :: Process a -> Process (Task a) Source
Run a child process in background and return immediately the corresponded task.
spawnTaskUsingId :: ProcessId -> Process a -> Process (Task a) Source
Run using the specified identifier a child process in background and return immediately the corresponded task.
spawnTaskWith :: ContCancellation -> Process a -> Process (Task a) Source
Run a child process in background and return immediately the corresponded task.
spawnTaskUsingIdWith :: ContCancellation -> ProcessId -> Process a -> Process (Task a) Source
Run using the specified identifier a child process in background and return immediately the corresponded task.