Book Image

Oracle BPM Suite 12c Modeling Patterns

By : Vivek Acharya
Book Image

Oracle BPM Suite 12c Modeling Patterns

By: Vivek Acharya

Overview of this book

Table of Contents (19 chapters)
Oracle BPM Suite 12c Modeling Patterns
Credits
Disclaimer
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Trigger patterns


Trigger patterns are a set of patterns that deal with external signals. We will just list the pattern features; however, you will find various occurrences in this book where these patterns are used. There are two variants of trigger patterns: transient trigger and persistent trigger.

Transient trigger pattern

The following table summarizes Transient Trigger Patterns:

Signature

Transient Trigger Patterns

Classification

Trigger Patterns

Intent

The explicit initiation/termination of a task (activity/subprocess) by a signal from the same process or from an external environment.

Motivation

There are cases when an external signal arrives at the process or the process itself raises a signal. However, these signals will be lost if there is no subscriber to act on those signals. These signals are basically events and must be dealt with as soon as they occur, else they will be lost.

Applicability

For example, an activity can be cancelled by a cancel event. However...