1cosEventDomainApp(3) Erlang Module Definition cosEventDomainApp(3)
2
3
4
6 cosEventDomainApp - The main module of the cosEventDomain application.
7
9 To get access to the record definitions for the structures use:
10 -include_lib("cosEventDomain/include/*.hrl").
11
12 This module contains the functions for starting and stopping the appli‐
13 cation.
14
16 install() -> Return
17
18 Types:
19
20 Return = ok | {'EXCEPTION', E} | {'EXIT', R}
21
22 This operation installs the cosEventDomain application.
23
24 uninstall() -> Return
25
26 Types:
27
28 Return = ok | {'EXCEPTION', E} | {'EXIT', R}
29
30 This operation uninstalls the cosEventDomain application.
31
32 start() -> Return
33
34 Types:
35
36 Return = ok | {error, Reason}
37
38 This operation starts the cosEventDomain application.
39
40 stop() -> Return
41
42 Types:
43
44 Return = ok | {error, Reason}
45
46 This operation stops the cosEventDomain application.
47
48 start_factory() -> Factory
49
50 Types:
51
52 Factory = #objref
53
54 This operation creates a new instance of a Event Domain Factory
55 using the default settings.
56
57 start_factory(Options) -> Factory
58
59 Types:
60
61 Options = [Option]
62 Option = currently no options defined.
63 Factory = #objref
64
65 This operation creates a new instance of a Event Domain Factory
66
67 start_factory_link() -> Factory
68
69 Types:
70
71 Factory = #objref
72
73 This operation creates a new instance of a Event Domain Factory,
74 which is linked to the invoking process, using the default set‐
75 tings.
76
77 start_factory_link(Options) -> Factory
78
79 Types:
80
81 Options = [Option]
82 Option = currently no options defined.
83 Factory = #objref
84
85 This operation creates a new instance of a Event Domain Factory,
86 which is linked to the invoking process, with settings defined
87 by the given options. Allowed options are the same as for cosEv‐
88 entDomainApp:start_factory/1.
89
90 stop_factory(Factory) -> Reply
91
92 Types:
93
94 Factory = #objref
95 Reply = ok | {'EXCEPTION', E}
96
97 This operation stop the target factory.
98
99
100
101Ericsson AB cosEventDomain 4.5.2 cosEventDomainApp(3)