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 parent
A parent for this continuation. Can be asked for default scope or for the nextFunc
JooseX.CPS.Continuation previous
A previous continuation for this continuation. Can be asked for default scope or for the nextFunc
Array statements
An 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 type
The type of this continuation. Can be 'Sequential' or 'Parallel's
Boolean entered
The sign whether this continuation was already entered - i.e. activated.
Boolean leaved
The sign whether this continuation was already leaved - i.e. the
CONTINUE
orTHROW
method were called.
Object defaultScope
The default scope which will be supplied to the statements if not provided explicitly. Once passed to
TRY
, propagates to the further statements.
Function nextFunc
If 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/finallyFunc
The functions for
CATCH/FINALLY
statements accordingly.
Object catchScope/finallyScope
The scopes for
CATCH/FINALLY
statements accordingly.
JooseX.CPS.Continuation TRY(Function func, Object scope?, Array args?)
Add a statement to the current continuation. If continuation already contains
CATCH
orFINALLY
statements - then delegate toNEXT
and return a next continuation instance. otherwise return current continuation.
JooseX.CPS.Continuation THEN(Function func, Object scope?, Array args?)
Alias for
TRY
with a single exception. If the type of the continuation isParallel
then delegate toNEXT
and return a next continuation instance.Has a lower-case synonym : 'then'
JooseX.CPS.Continuation CATCH(Function func, Object scope?)
Add a
CATCH
statement to the current continuation.Has a lower-case synonym : 'except'
JooseX.CPS.Continuation FINALLY(Function func, Object scope?)
Add a
FINALLY
statement 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
TRY
that 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
entry
method with the passed arguments.Has a lower-case synonym : 'now'
Function getCONTINUE()
Return a function, binded to the
CONTINUE
method of itself.
Function getRETURN()
Return a function, binded to the
RETURN
method of itself.
Function getTHROW()
Return a function, binded to the
THROW
method 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.