Class: base/chains

base/chains

Chains define the primary composition elements (functions) that determine the order of execution.

new base/chains()

Source:

Members

close

The close method asks an object to shut itself down in a way that will allow it to be reopened, unlike the end method which will call the destroy method which should make the object unusable, but also devoid of all resources whereas close may still keep some resources open.

This uses the before chain which means the last one defined in the first one destroyed

Source:
See:

end

The end method will call the destroy method which should make the object unusable and devoid of all resources, unlike the close method asks an object to shut itself down in a way that will allow it to be reopened.

This uses the before chain which means the last one defined in the first one destroyed

Source:

open

If you are using the open/close paradigm for an object that can kind of go dormant on base/chains#close and can be "reopened" again later, here is where the "open" code will go.

This used the after chain which means that the first one defined is the first one destroyed.

Source:
See:
DocStrap Copyright © 2012-2013 The contributors to the JSDoc3 and DocStrap projects.
Documentation generated by JSDoc 3.3.0-alpha5 on Mon Jul 7th 2014 using the DocStrap template.