Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / examples / CSD_Strategy / README
blobcd3358c1aabd6a33ea163f53acb004474ca9708f
3 The example ThreadPool, ThreadPool2 and ThreadPool3 use the same idl file which
4 defines some twoway calls and a simple oneway call and they are different just
5 because of their configurations such as the number of servants, the number of
6 ORB threads and the number of csd threads.
8 ThreadPool  - 1 servant, 1 ORB theread (main thread), 1 csd thread.
9 ThreadPool2 - multiple servants, 1 ORB theread (main thread), multiple
10 csd threads.
11 ThreadPool3 - 1 servant, multiple ORB thereads (main thread), multiple
12 csd threads.
14 The example 6 is simply a copy of the threadpool example, the only difference
15 is it uses the TIE approach.
17 The example ThreadPool4 and ThreadPool5 use the same idl file which includes
18 the operations defined in example ThreadPool, ThreadPool2 and ThreadPool3 in
19 addition of callbacks and the oneway "IN" argument test. The ThreadPool4 is
20 a collocated test. The ThreadPool5 combines all other test cases together except
21 the ThreadPool6 example.