Created
May 22, 2016 13:06
-
-
Save rpominov/9b4e3f858b35905e66465211f783dc13 to your computer and use it in GitHub Desktop.
Task concept
This file contains hidden or 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
| type Result<L,R> = | |
| | {T: 'Right', value: R} | |
| | {T: 'Left', value: L} | |
| | {T: 'Thrown', error: any} | |
| | {T: 'Cancel'} | |
| type Cancel = () => void | |
| type RunHandler<L,R> = | |
| | (result: Result<L,R>) => void | |
| | { | |
| Right?: (value: R) => void, | |
| Left?: (value: L) => void, | |
| Thrown?: (error: any) => void, | |
| Cancel?: () => void, | |
| } | |
| type RunOptions = { | |
| catch?: boolean | |
| } | |
| type Task<L,R> = { | |
| run(handler: RunHandler<L,R>, options?: RunOptions): Cancel | |
| } |
Author
Author
Alt 2
Like #1 but with Task<L,R>. L and R only for user's explicit "lefts" / "rights", catched exceptions never go there. Exceptions still go only into onError callback in runAndCatch and can't be recovered from etc.
And yeah, we don't need onCancel callback probably...
Author
Alt 3
Like #2 but catched exceptions go into L.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Alternative approach 1
Task<Result<L,R,E>>internally make it justTask<A>Either<L,R>intoTask<A>by themselvesrunAndCatch(onSuccess, onError)that uses different fromrunstrategy and wraps everything totry..catchstopping on first exception and callingonErrorwith it, or callingonSuccessas normalrun(onSuccess)if no exceptions appearedrunAndCatchwe will not have an ability to recover, there nochainError(). Or we could actually havechainError()but this is probably bad idea...In browser you would use
run()and on the server you would userunAndCatch()all the rest of the code should be universal and dealing withTask<A>type, usingTask<Either<L,R>>if necessary.