File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,14 @@ later' :: forall e a. Number -> Aff e a -> Aff e a
108
108
Runs the specified asynchronous computation later, by the specified
109
109
number of milliseconds.
110
110
111
+ #### ` finally `
112
+
113
+ ``` purescript
114
+ finally :: forall e a b. Aff e a -> Aff e b -> Aff e a
115
+ ```
116
+
117
+ Compute ` aff1 ` , followed by ` aff2 ` regardless of whether ` aff1 ` terminated successfully.
118
+
111
119
#### ` forkAff `
112
120
113
121
``` purescript
@@ -262,6 +270,9 @@ instance monoidCanceler :: Monoid (Canceler e)
262
270
263
271
## Module Control.Monad.Aff.AVar
264
272
273
+
274
+ A low-level primitive for building asynchronous code.
275
+
265
276
#### ` AVAR `
266
277
267
278
``` purescript
@@ -365,6 +376,11 @@ from writing `liftEff $ trace x` everywhere.
365
376
366
377
## Module Control.Monad.Aff.Par
367
378
379
+
380
+ A newtype over ` Aff ` that provides ` Applicative ` instances that run in
381
+ parallel. This is useful, for example, if you want to run a whole bunch
382
+ of AJAX requests at the same time, rather than sequentially.
383
+
368
384
#### ` Par `
369
385
370
386
``` purescript
You can’t perform that action at this time.
0 commit comments