2001 2016 Ericsson AB, All Rights Reserved Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. The Initial Developer of the Original Code is Ericsson AB. cosEventDomainApp Niclas Eklund Niclas Eklund Niclas Eklund 2001-08-20 PA1
cosEventDomainApp The main module of the cosEventDomain application.

To get access to the record definitions for the structures use:

This module contains the functions for starting and stopping the application.

install() -> Return Install the cosEventDomain application Return = ok | {'EXCEPTION', E} | {'EXIT', R}

This operation installs the cosEventDomain application.

uninstall() -> Return Uninstall the cosEventDomain application Return = ok | {'EXCEPTION', E} | {'EXIT', R}

This operation uninstalls the cosEventDomain application.

start() -> Return Start the cosEventDomain application Return = ok | {error, Reason}

This operation starts the cosEventDomain application.

stop() -> Return Stop the cosEventDomain application Return = ok | {error, Reason}

This operation stops the cosEventDomain application.

start_factory() -> Factory Start a factory with default settings Factory = #objref

This operation creates a new instance of a Event Domain Factory using the default settings.

start_factory(Options) -> Factory Start a factory with settings defined by the given options Options = [Option] Option = currently no options defined. Factory = #objref

This operation creates a new instance of a Event Domain Factory

start_factory_link() -> Factory Start a factory, which is linked to the invoking process, with default settings Factory = #objref

This operation creates a new instance of a Event Domain Factory, which is linked to the invoking process, using the default settings.

start_factory_link(Options) -> Factory Start a factory, which is linked to the invoking process, with settings defined by the given options Options = [Option] Option = currently no options defined. Factory = #objref

This operation creates a new instance of a Event Domain Factory, which is linked to the invoking process, with settings defined by the given options. Allowed options are the same as for .

stop_factory(Factory) -> Reply Terminate the target object Factory = #objref Reply = ok | {'EXCEPTION', E}

This operation stop the target factory.