A transition is javascript code that runs when a document is changed. A transition can edit the changed doc or do anything server side code can do for that matter.
Transitions are run in series, not in parallel:
-
For a given change, you can expect one transition to be finished before the next runs.
-
You can expected one change to be fully processed by all transitions before the next starts being processed.
Transitions obey the following rules:
-
has a
filter(doc)
function that accepts the changed document as an argument and returnstrue
if it needs to run/be applied. -
a
onMatch(change, db, auditDb, callback)
function than will run on changes that pass the filter. -
can have an
init()
function to do any required setup and throw Errors on invalid configuration. -
has an
onChange(change, db, audit, callback)
function that makes changes to thechange.doc
reference (copying is discouraged).db
andaudit
are handles to let you query those DBs. More aboutcallback
below. -
It is not necessary for an individual transition to save the changes to
change.doc
to the db: the doc will be saved once, after all the transitions have edited it. If an individual transition saves the document provided atchange.doc
, it takes responsibility re-attaching the newly saved document (with new seq etc) atchange.doc
-
guarantees the consistency of a document.
-
runs serially and in any order. A transition is free to make async calls but the next transition will only run after the previous transitions's callback is called. If your transition is dependent on another transition then it will run on the next change. Code your transition to support two changes rather than require a specific ordering. You can optimize your ordering but don't require it. This keeps configuration simpler.
-
is repeatable, it can run multiple times on the same document without negative effect. You can use the
transitions
property on a document to determine if a transition has run.
Callback arguments:
-
callback(err, needsSaving)
needsSaving
is true if thechange.doc
needs to be saved to db by the transition runner. For instance the transition has edited thechange.doc
in memory.err
if truthy, the error will be added to thechanges.doc
in memory. (Note that ifneedsSaving
is falsy, the doc will not be saved, so that error will not be persisted).
Regardless whether the doc is saved or not, the transitions will all be run (unless one crashes!).
When your transition encounters an error, there are different ways to deal with it. You can :
- finish your transition with
callback(someError, true)
. This will save the error tochange.doc
. - finish your transition with
callback(someError, false)
. The error will be logged to the sentinel log. This will not save the error on thechange.doc
, so there will be no record that this transition ran. That particularchange
will not go through transitions again, but if the same doc has another change in the future, since there is no record of the erroring transition having run, it will be rerun. - crash sentinel. When sentinel restarts, since that
change
did not record a successful processing, it will be reprocessed. Transitions that did not save anything to thechange.doc
will be rerun.