JADE Object Manager Distributed Processing

The JADE Object Manager implements object-oriented and distributed processing functionality.

The distributed processing components of the JADE Object Manager, listed in the following table, are the environmental objects maintained automatically by the JADE Object Manager.

Component Description
system A single object for a specific database. It contains a dictionary of the nodes that are currently signed on to the server node.
node One node object exists for each logical workstation connected to the server node workstation. There is one fixed server node, and none, one, or many client nodes. A node represents a workstation that hosts the execution of one or several processes, and it contains a dictionary of the processes currently active in the node.
  A node object is created for each JADE executable program that is running; that is, a workstation that is running two JADE applications has two node objects, or logical workstation connections to the server.
process One process object exists for every sign-on operation performed on a specific node. There is always a system process on every node, created automatically every time a node is initialized. This process is used for internal housekeeping of the node.

You can access these system-provided objects to assist in process distribution, by using the jomGetExecInstances Application Program Interface (API). For details, see "Getting Execution Instances", in Chapter 3.

The system-provided objects are created as instances of special classes: the System, Node, and Process classes. The instances of these classes correspond to the system, node, and process JADE system variables (JADE language reserved words), which are defined from the point of view of the method that uses them. For details, see "System Variables", in Chapter 1 of the JADE Developer’s Reference.

A node object is created every time a new workstation starts executing a JADE Object Manager client application, as a result of a jomInitialize API call. (For details, see "Initializing a Node", in Chapter 3.)

A process object is created every time an application is started in a JADE Object Manager node, as a result of a jomSignOn API call. (For details, see "Opening a Process", in Chapter 3.) Every process executes in its own operating system thread, and the user is required to create a new thread before signing on again. When the JADE Object Manager application is the jade.exe program, methods available in the JADE language enable you to start new processes from a JADE user process.

Lock environmental object collections (for example, node.processes and system.nodes) with caution, as this can cause hold-ups when processes sign off and on and when nodes initiate and terminate.

No process can access uncommitted changes to a persistent object made by another process running in the same node or a different node. The changes are invisible to other processes until they are committed. Any other process making an unlocked access to an object being updated will receive the most-recently committed edition, and will not see the uncommitted updates.

Methods can be executed on a client node or a server node. Modifications to persistent objects must be done within persistent transactions. (For more details about server and client execution of methods, see "Method Options", in Chapter 1 of the JADE Developer’s Reference.)

The following restrictions apply to persistent objects when using the server or client execution method option.

All changes that occur when transient objects are created, updated, or deleted during the execution of a server method are sent back to the client node. These changes are then merged with the current transient object population in the client node. The transient object space on both the client and server nodes is then the same as if the method had been executed locally.

As a transaction is effective across client and server nodes for shared transient objects, the beginTransientTransaction instruction makes transaction state active for client methods and server methods, regardless of the execution location. Similarly, the commitTransientTransaction instruction ends transaction state for client methods and server methods.

As is the case for persistent objects, no process can access updated shared transient objects until the commitTransientTransaction instruction is executed. A process attempting such an access without locking will receive the most-recently committed edition instead.

If the commitTransientTransaction instruction is executed by a server method, the updated objects are sent to the client node before they are removed from the server node cache. This ensures that other processes accessing the objects on the client node will see the latest edition.