aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cosNotification/doc/src/ch_system.xml
blob: 2efda9e5cdfde2616b5fcb9ea5d86fbd21bad3dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">

<chapter>
  <header>
    <copyright>
      <year>2000</year><year>2013</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      The contents of this file are subject to the Erlang Public License,
      Version 1.1, (the "License"); you may not use this file except in
      compliance with the License. You should have received a copy of the
      Erlang Public License along with this software. If not, it can be
      retrieved online at http://www.erlang.org/.
    
      Software distributed under the License is distributed on an "AS IS"
      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
      the License for the specific language governing rights and limitations
      under the License.
    
    </legalnotice>

    <title>The Notification Service Components</title>
    <prepared>Niclas Eklund</prepared>
    <docno></docno>
    <date>2000-04-13</date>
    <rev></rev>
    <file>ch_system.xml</file>
  </header>

  <section>
    <title>The Notification Service Components</title>
    <p>This chapter describes the Notification Service Components and how they
      interact.</p>

    <section>
      <title>Components</title>
      <p>There are seven components in the OMG Notification Service architecture. 
        These are described below: </p>
      <marker id="notificationFlow"></marker>
      <image file="notificationFlow.gif">
        <icaption>
Figure 1: The Notification Service Components.</icaption>
      </image>
      <list type="bulleted">
        <item><em>Event Channel:</em> acts as a factory for Administrator objects.
         Allows clients to set Administrative Properties.</item>
        <item><em>Supplier Administrators:</em> acts as a factory for Proxy Consumers.
         Administrators are started as <c>'AND_OP'-</c> or <c>'OR_OP'-</c>type,
         which determines if events must be validated using both the Administrators
         associated Filter and/or its Proxy children Filters.</item>
        <item><em>Consumer Administrators:</em> acts in the same way as Supplier Administrators
         but handle Proxy Suppliers.</item>
        <item><em>Consumer Proxy:</em> is connected to a client application. Can be
         started as <c>Pull</c> or <c>Push</c> object. If the proxy is Push style
         the client application must push events to the Proxy, otherwise the Proxy is
         supposed to Pull events. The <c>CosNotification::AdminProperties</c> is
         used to set the pacing interval.</item>
        <item><em>Supplier Proxy:</em> Acts in a similar way as the Consumer Proxy, but
         if started as a <c>Push</c> proxy it will push events to the client
         application.</item>
        <item><em>Filters:</em> used to filter events. May be associated with Proxies
         and Administrators.</item>
        <item><em>Mapping Filters:</em> used to override events Quality of Service
         settings. Can only be associated with Consumer Administrators and
         Proxy Suppliers.</item>
      </list>
      <p>When a Proxy is started it is set to accept <c>CORBA::Any</c>, 
        <c>CosNotification::StructuredEvent</c> or <c>CosNotification::EventBatch</c>
        (a sequence of structured events).</p>
      <p>If a Proxy is supposed to deliver structured events to a client application
        and receives an <c>CORBA::Any</c> event, the event is converted to a 
        structured event with <c>type_name</c> set to <c>"%ANY"</c> and the
        event is stored in <c>remainder_of_body</c>.</p>
      <p>If a Proxy is supposed to deliver <c>CORBA::Any</c> events to a client application
        and receives a structured event, the event is stored in an Any type. The
        Any Type Code will be equal to the <c>CosNotification::StructuredEvent</c>
        Type Code.</p>
    </section>
  </section>
</chapter>