Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • jBPM6 Developer Guide
  • Toc
  • feedback
jBPM6 Developer Guide

jBPM6 Developer Guide

By : Salatino
2 (4)
close
jBPM6 Developer Guide

jBPM6 Developer Guide

2 (4)
By: Salatino

Overview of this book

If you are a Java developer or architect who needs to have a better understanding of how Business Process Management frameworks behave in real-life implementations, this book is for you. This book assumes that you know the Java language well and are familiar with some widely used frameworks such as Hibernate. You should also know the basics of relational databases and Maven-based applications.
Table of Contents (13 chapters)
close
12
Index

Understanding the role of the runtime manager


The runtime manager's main role in an application is to provide an application-wide point to access process runtimes (all the necessary interconnected services to execute a process execution within a specific domain). The nature of those runtimes and how many different runtimes can exist in a particular domain is a decision that each of the runtime manager implementations available has to make. By default, a runtime will be composed of two main components: the KIE session where the process is executed and the Human task component where human tasks will be handled. Both are grouped and returned from the runtime manager through the RuntimeEngine interface:

public interface RuntimeManager {
    RuntimeEngine getRuntimeEngine(Context<?> context);
    void disposeRuntimeEngine(RuntimeEngine engine);
    String getIdentifier();
    void close();
}

public interface RuntimeEngine {
    KieSession getKieSession();
    TaskService getTaskService...
bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete