Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cospropertyservice_propertysetfactory(3erl) [linux man page]

CosPropertyService_PropertySetFactory(3erl)		     Erlang Module Definition		       CosPropertyService_PropertySetFactory(3erl)

NAME
CosPropertyService_PropertySetFactory - This module implements the OMG CosPropertyService::PropertySetFactory interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosProperty/include/CosPropertyService.hrl"). EXPORTS
create_propertyset(Factory) -> PropertySet Types Factory = PropertySet = #objref This operation creates a new PropertySe t with no predefined properties. create_constrained_propertyset(Factory, PropertyTypes, Properties) -> Reply Types Factory = #objref PropertyTypes = [CORBA::TypeCode] Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] Name = string() Value = #any Reply = {'EXCEPTION', #CosPropertyService_ConstraintNotSupported{}} | PropertySet PropertySet = #objref This operation creates a new PropertySet with specific constraints. PropertyTypes states allowed TypeCode's and Properties valid CosPropertyService::Property data. create_initial_propertyset(Factory, Properties) -> Reply Types Factory = #objref Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] Name = string() Value = #any Reply = {'EXCEPTION', #CosPropertyService_MultipleExceptions{exceptions = Excs}} | PropertySet Excs = [#'CosPropertyService_PropertyException{reason = Reason, failing_property_name = Name}] Reason = invalid_property_name | conflicting_property | property_not_found | unsupported_type_code | unsupported_property | unsupported_mode | fixed_property | read_only_property PropertySet = #objref This operation creates a new PropertySet with specific initial properties. Ericsson AB cosProperty 1.1.13 CosPropertyService_PropertySetFactory(3erl)

Check Out this Related 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)
Man Page