ITarget
pentaho.type.action.ITarget
The ITarget
interface represents the entity which is acted upon or the place where the action
takes place.
In turn, commonly, an action target will emit events for each of the action's phases, events in which it is its source.
Source: doc-js/pentaho/type/action/ITarget.jsdoc, line 17
See also: pentaho.type.action.Base
Methods
Name | Description |
---|---|
act(action) : pentaho.type.action.Base | Executes a given action in this target and does not wait for its outcome. |
actAsync(action) : Promise | Executes a given action in this target and waits for its outcome. |
Methods Details
act(action) : pentaho.type.action.Base | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Executes a given action in this target and does not wait for its outcome. This method can be given It is up to the action target implementation to call the given action's Source: doc-js/pentaho/type/action/ITarget.jsdoc, line 31
See also: pentaho.type.action.ITarget#actAsync |
actAsync(action) : Promise | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Executes a given action in this target and waits for its outcome. This method can be given either It is up to the action target implementation to call the given action's Source: doc-js/pentaho/type/action/ITarget.jsdoc, line 52
See also: pentaho.type.action.ITarget#act |