Description Usage Arguments Format Details Methods Private fields See Also
Super class that handles the general functionalities of the pipes.
1 2 3 | PipeGeneric$new(propertyName,
alwaysBeforeDeps,
notAfterDeps)
|
propertyName |
(character) Name of the property. |
alwaysBeforeDeps |
(list) The dependences alwaysBefore (pipes that must be executed before this one). |
notAfterDeps |
(list) The dependences notAfter (pipes that cannot be executed after this one). |
An object of class R6ClassGenerator
of length 24.
Building...
pipe Abtract method to preprocess the intance.
Usage
pipe(instance)
Arguments
instance (Instance) Instance to preprocess.
getPropertyName Getter of name of property.
Usage
getPropertyName()
Value
Value of name of property.
getAlwaysBeforeDeps Getter of the dependences always before.
Usage
getAlwaysBeforeDeps()
Value
Value of dependences always before.
getNotAfterDeps Getter of the dependences not after.
Usage
getNotAfterDeps()
Value
Value of dependences not after.
propertyName (character) The name of property.
alwaysBeforeDeps (list) Dependencies of the type alwaysBefore. These dependences indicate what pipes must be executed before the current one.
notAfterDeps (list) Dependencies of the type notAfter. These dependences indicate what pipes must not be executed after the current one.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.