Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

coseventdomainapp(3erl) [linux man page]

cosEventDomainApp(3erl) 				     Erlang Module Definition					   cosEventDomainApp(3erl)

NAME
cosEventDomainApp - The main module of the cosEventDomain application. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosEventDomain/include/*.hrl"). This module contains the functions for starting and stopping the application. EXPORTS
install() -> Return Types Return = ok | {'EXCEPTION', E} | {'EXIT', R} This operation installs the cosEventDomain application. uninstall() -> Return Types Return = ok | {'EXCEPTION', E} | {'EXIT', R} This operation uninstalls the cosEventDomain application. start() -> Return Types Return = ok | {error, Reason} This operation starts the cosEventDomain application. stop() -> Return Types Return = ok | {error, Reason} This operation stops the cosEventDomain application. start_factory() -> Factory Types Factory = #objref This operation creates a new instance of a Event Domain Factory using the default settings. start_factory(Options) -> Factory Types Options = [Option] Option = currently no options defined. Factory = #objref This operation creates a new instance of a Event Domain Factory start_factory_link() -> Factory Types Factory = #objref This operation creates a new instance of a Event Domain Factory , which is linked to the invoking process, using the default set- tings. start_factory_link(Options) -> Factory Types 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 cosEventDomainApp:start_factory/1 . stop_factory(Factory) -> Reply Types Factory = #objref Reply = ok | {'EXCEPTION', E} This operation stop the target factory. Ericsson AB cosEventDomain 1.1.10 cosEventDomainApp(3erl)

Check Out this Related Man Page

CosEventDomainAdmin_EventDomainFactory(3erl)		     Erlang Module Definition		      CosEventDomainAdmin_EventDomainFactory(3erl)

NAME
CosEventDomainAdmin_EventDomainFactory - This module implements an Event Domain Factory interface, which is used to create new Event Domain instances. DESCRIPTION
To get access to all definitions include necessary hrl files by using: -include_lib("cosEventDomain/include/*.hrl"). EXPORTS
create_event_domain(Factory, QoS, Admin) -> Reply Types Factory = #objref QoS = CosNotification::QoSProperties Admin = CosNotification::AdminProperties Reply = {EventDomain, DomainID} | {'EXCEPTION', #'CosNotification_UnsupportedQoS'{}} | {'EXCEPTION', #'CosNotification_Unsup- portedAdmin'{}} EventDomain = #objref To create a new EventDomain this operation is used. If it is not possible to support the given QoSProperties or AdminProperties an exception is raised, which list the properties not supported. For more information see the cosNotification user's guide. get_all_domains(Factory) -> DomainIDSeq Types Factory = #objref DomainIDSeq = [long()] This function returns a DomainID sequence of all domains associated with the target object. get_event_domain(Factory, DomainID) -> Reply Types Factory = #objref DomainID = long() Reply = EventDomain | {'EXCEPTION', #'CosEventDomainAdmin_DomainNotFound'{}} EventDomain = #objref This operation returns the EventDomain object associated with the given DomainID. If no such binding exists an exception is raised. Ericsson AB cosEventDomain 1.1.10 CosEventDomainAdmin_EventDomainFactory(3erl)
Man Page