Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

lname_component(3erl) [linux man page]

lname_component(3erl)					     Erlang Module Definition					     lname_component(3erl)

NAME
lname_component - Interface that supports the name pseudo-objects. DESCRIPTION
This interface is a part of the name library, which is used to hide the representation of names. In Orbers Erlang mapping the pseudo-object names and the real IDL names have the same representation but it is desirable that the clients uses the names library so they will not be dependent of the representation. The lname_component interface supports handling of name components e.g. set and get of the struct members. Note that the lname_component interface in orber does not contain a destroy function because the NameComponents are represented as Erlang records and therefor will be removed by the garbage collector when not in use. The type NameComponent used below is defined as: -record('CosNaming_NameComponent', {id, kind=""}). id and kind are strings. The record is defined in the file CosNaming.hrl and it is included with: -include_lib("orber/COSS/CosNaming/CosNaming.hrl"). EXPORTS
create() -> Return Types Return = NameComponent This function returns a new name component. get_id(NameComponent) -> Return Types Return = string() This function returns the id string of a name component. set_id(NameComponent, Id) -> Return Types Id = string() Return = NameComponent This function sets the id string of a name component and returns the component. get_kind(NameComponent) -> Return Types Return = string() This function returns the id string of a name component. set_kind(NameComponent, Kind) -> Return Types Kind = string() Return = NameComponent This function sets the kind string of a name component and returns the component. Ericsson AB orber 3.6.20 lname_component(3erl)

Check Out this Related Man Page

CosNaming_BindingIterator(3erl) 			     Erlang Module Definition				   CosNaming_BindingIterator(3erl)

NAME
CosNaming_BindingIterator - This interface supports iteration over a name binding list. DESCRIPTION
This interface allows a client to iterate over the Bindinglist it has been initiated with. The type NameComponent used below is defined as: -record('CosNaming_NameComponent', {id, kind=""}). id and kind are strings. The type Binding used below is defined as: -record('CosNaming_Binding', {binding_name, binding_type}). binding_name is a Name = [NameComponent] and binding_type is an enum which has the values nobject and ncontext . Both these records are defined in the file CosNaming.hrl and it is included with: -include_lib("orber/COSS/CosNaming/CosNaming.hrl"). EXPORTS
next_one(BindinIterator) -> Return Types BindingIterator = #objref Return = {bool(), Binding} This operation returns the next binding and a boolean. The latter is set to true if the binding is valid otherwise false. If the boolean is false there are no more bindings to retrieve. next_n(BindinIterator, HowMany) -> Return Types BindingIterator = #objref HowMany = int() BindingList = [Binding] Return = {bool(), BindingList} This operation returns a binding list with at most HowMany bindings. If there are no more bindings it returns false otherwise true. destroy(BindingIterator) -> Return Types BindingIterator = #objref Return = ok This operation destroys the binding iterator. Ericsson AB orber 3.6.20 CosNaming_BindingIterator(3erl)
Man Page