First page Back Continue Last page Overview Graphics
policy: Thread
ORB_CTRL_MODEL
- servants can be called in parallel from separate threads (created and controlled by the ORB)
- servants must be written as thread-aware
SINGLE_THREAD_MODEL
- a model which guarantees that all requests for all objects in this POA will be dispatched sequentially
- but the application still can have more single-threaded POAs running in parallel (in separate threads)
Notes: