Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / examples / Notify / Subscribe / README
blob6fb672c3fa930abab77ef8349849735fa9a6d44d
3 Subscribe example:
4 ----------------
5 Note: This example is under construction.
7 The Notification service must be up and running before launching this example.
8 (See the README under $TAO_ROOT/orbsvcs/Notify_Service for more details.)
10 Description:
11 ------------
12 This example sets subscription event type constraints (domain_name,type_name):
14 At the consumer admin. C1 = ("domain_A", "Type_1").
15 This means that all consumers connected to this admin object are interested
16 in receiving events of "domain_A" and "Type_1".
18 At consumer 1, C2 = ("domain_B", Type_2")
19 At consumer 2, C3 = ("domain_C", Type_3")
21 A supplier then send events of all 3 types to the event channel.
22 i,e. event E1 with event type C1,
23      event E2 with event type C2 and
24      event E3 with event type C3.
26 From the subscriptions, consumer1 receives E1 and E2, (not E3) and
27 consumer2 receives E1 and E3 (not E2).
29 running the ./Subscribe example will output the events received by each
30 consumer.