Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / examples / Content_Server / README
blobb0c2b545185c3f9f0877dc24fc7c7f51c4c43814
1 This directory contains a number of example applications that
2 illustrate how to transmit large files using standard CORBA and TAO.
3 The individual directories contain READMEs on how to run the following
4 examples:
6 . SMI_Iterator
8   Illustrates how to use the Iterator pattern to download
9   large files one chunk at a time using synchronous
10   method invocations that are "pulled" by the client
11   from the server.
13 . AMI_Iterator
15   Illustrates how to use the Iterator pattern to download
16   large files one chunk at a time using asynchronous
17   method invocations that are "pulled" by the client
18   from the server.
20 . AMI_Observer
22   Illustrates how to use the Observer pattern to download
23   large files one chunk at a time using asynchronous
24   method invocations that are "pushed" from the server
25   to the client.