Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cospropertyservice_propertiesiterator(3erl) [linux man page]

CosPropertyService_PropertiesIterator(3erl)		     Erlang Module Definition		       CosPropertyService_PropertiesIterator(3erl)

NAME
CosPropertyService_PropertiesIterator - This module implements the OMG CosPropertyService::PropertiesIterator interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosProperty/include/CosPropertyService.hrl"). EXPORTS
reset(Iterator) -> ok Types Iterator = #objref This operation resets the position to the first property. next_one(Iterator) -> Reply Types Iterator = #objref Reply = {boolean(), #'CosPropertyService_Property'{property_name = Name, property_value = Value}} Name = string() Value = #any This operation returns true . If false is returned the out parameter is a non-valid Property. next_n(Iterator, HowMany) -> Reply Types Iterator = #objref HowMany = long() Reply = {boolean(), Properties} Properties = [#'CosPropertyService_Property'{property_name = Name, property_value = Value}] Name = string() Value = #any This operation returns true if the requested number of properties can be delivered and there are additional properties. If false is returned and a sequence of max HowMany properties will be returned and no more properties can be delivered. destroy(Iterator) -> ok Types Iterator = #objref This operation will terminate the Iterator and all subsequent calls will fail. Ericsson AB cosProperty 1.1.13 CosPropertyService_PropertiesIterator(3erl)

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