libs/ngx-pfe/pfe-actions/trigger-service-activators/trigger-service-activators.model.ts
No results matching.
Properties |
|
| executeServiceActivatorsSequential |
executeServiceActivatorsSequential:
|
Type : boolean
|
| Optional |
| serviceActivators |
serviceActivators:
|
Type : NavServiceActivatorConfigsArray
|
| type |
type:
|
Type : typeof PfeTriggerServiceActivatorsType
|
| break |
break:
|
Type : boolean
|
| Optional |
|
If break is "true" and the action was executed (that means, no conditions or conditions returns true) The flow will be stopped and the next actions will not be executed |
| conditions |
conditions:
|
Type : Conditions
|
| Optional |
|
A list of conditions under which the actions are executed |
| globalConfigId |
globalConfigId:
|
Type : string
|
| Optional |
|
Only valid on the navigation. Will spread the actions. |
import { PfeBaseActionConfig } from '../pfe-actions.model';
import { NavServiceActivatorConfigsArray } from '../../pfe-service-activator/service/service-activator.model';
export const PfeTriggerServiceActivatorsType = 'PFE_TRIGGER_SERVICE_ACTIVATORS';
export interface PfeTriggerServiceActivatorsActionConfig extends PfeBaseActionConfig {
type: typeof PfeTriggerServiceActivatorsType;
serviceActivators: NavServiceActivatorConfigsArray;
executeServiceActivatorsSequential?: boolean;
}