Changes between Version 1 and Version 2 of Documentation/SystemQueue


Ignore:
Timestamp:
Dec 17, 2008, 11:08:07 AM (16 years ago)
Author:
Christoph Mayer
Comment:

Documentation about Threading and the SystemQueue

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/SystemQueue

    v1 v2  
    1 --
     1= Threading and the SystemQueue =
     2
     3Ariba makes it easy to avoid threading issues like synchronization and upcoming problems like deadlocks, race conditions, or access violations. The threading model in Ariba is completely serial, parallelism is avoided whenever possible. If you are using Ariba to write a service or application, two simple guidelines apply:
     4
     5 * Code event driven
     6 * Don't block or wait
     7
     8When you comply with these two points, you will never get into any threading problems!
     9
     10== Overview of Threading in Ariba ==
     11
     12== SystemQueue Internals ==
     13
     14== Using the SystemQueue ==
     15
     16== Using Blocking Code ==