JooseX.CPS.Continuation - A continuation class
TRY = function () {
var continuation = new JooseX.CPS.Continuation()
return continuation.TRY.apply(continuation, arguments)
}
JooseX.CPS.Continuation implements a continuation - an underlaying basis for JooseX.CPS trait.
None.
None.
None.
JooseX.CPS.Continuation parentA parent for this continuation. Can be asked for default scope or for the nextFunc
JooseX.CPS.Continuation previousA previous continuation for this continuation. Can be asked for default scope or for the nextFunc
Array statementsAn array of statements. Each statement is an object like :
{
func : ... , // function to execute
scope : ... , // scope into which execute the function
args : ... // arguments for function
}
String typeThe type of this continuation. Can be 'Sequential' or 'Parallel's
Boolean enteredThe sign whether this continuation was already entered - i.e. activated.
Boolean leavedThe sign whether this continuation was already leaved - i.e. the
CONTINUEorTHROWmethod were called.
Object defaultScopeThe default scope which will be supplied to the statements if not provided explicitly. Once passed to
TRY, propagates to the further statements.
Function nextFuncIf present, this function will be called, when leaving this continuation. Will be called in the global scope, with the arguments from the method, initated the leave.
Function catchFunc/finallyFuncThe functions for
CATCH/FINALLYstatements accordingly.
Object catchScope/finallyScopeThe scopes for
CATCH/FINALLYstatements accordingly.
JooseX.CPS.Continuation TRY(Function func, Object scope?, Array args?)Add a statement to the current continuation. If continuation already contains
CATCHorFINALLYstatements - then delegate toNEXTand return a next continuation instance. otherwise return current continuation.
JooseX.CPS.Continuation THEN(Function func, Object scope?, Array args?)Alias for
TRYwith a single exception. If the type of the continuation isParallelthen delegate toNEXTand return a next continuation instance.Has a lower-case synonym : 'then'
JooseX.CPS.Continuation CATCH(Function func, Object scope?)Add a
CATCHstatement to the current continuation.Has a lower-case synonym : 'except'
JooseX.CPS.Continuation FINALLY(Function func, Object scope?)Add a
FINALLYstatement to the current continuation.Has a lower-case synonym : 'ensure'
JooseX.CPS.Continuation NEXT(Function func, Object scope?, Array args?)Derive a sibling continuation, chaining it after itself. Return newly created continuation.
Has a lower-case synonym : 'next'
JooseX.CPS.Continuation AND(Function func, Object scope?, Array args?)Alias for
TRYthat also switch a type of the continuation toParallel.Has a lower-case synonym : 'and'
JooseX.CPS.Continuation NOW()Activates current continuation graph by looking the 1st not yet entered continuation. After finding it, delegate to its
entrymethod with the passed arguments.Has a lower-case synonym : 'now'
Function getCONTINUE()Return a function, binded to the
CONTINUEmethod of itself.
Function getRETURN()Return a function, binded to the
RETURNmethod of itself.
Function getTHROW()Return a function, binded to the
THROWmethod of itself.
This extension is supported via github issues tracker: http://github.com/SamuraiJack/JooseX-CPS/issues
For general Joose questions you can also visit the #joose on irc.freenode.org, or the forum at http://joose.it/forum
General documentation for Joose: http://joose.github.com/Joose/
Nickolay Platonov nplatonov@cpan.org
Copyright (c) 2009, Nickolay Platonov
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.