Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cosfiletransfer_fileiterator(3erl) [linux man page]

CosFileTransfer_FileIterator(3erl)			     Erlang Module Definition				CosFileTransfer_FileIterator(3erl)

NAME
CosFileTransfer_FileIterator - This module implements the OMG CosFileTransfer::FileIterator interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosFileTransfer/include/*.hrl"). EXPORTS
next_one(Iterator) -> Return Types Iterator = #objref Return = {boolean(), #'CosFileTransfer_FileWrapper'{the_file = File file_type = Type}} File = #objref Type = nfile | ndirectory This operation returns true if a FileWrapper exists at the current position and the out parameter contains a valid File reference. If false is returned the out parameter is a non-valid FileWrapper . next_n(Iterator, Max) -> Return Types Iterator = #objref Max = unsigned long() Return = {boolean(), FileList} FileList = [#'CosFileTransfer_FileWrapper'{the_file = File file_type = Type}] File = #objref Type = nfile | ndirectory This operation returns true if the requested number of FileWrappers can be delivered and there are additional FileWrappers . If false is returned a list, of length Max or less, containing the last valid FileWrappers associated with the target object. destroy(Iterator) -> ok Types Iterator = #objref This operation terminates the target object. Ericsson AB cosFileTransfer 1.1.10 CosFileTransfer_FileIterator(3erl)

Check Out this Related Man Page

CosPropertyService_PropertyNamesIterator(3erl)		     Erlang Module Definition		    CosPropertyService_PropertyNamesIterator(3erl)

NAME
CosPropertyService_PropertyNamesIterator - This module implements the OMG CosPropertyService::PropertyNamesIterator 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 name. next_one(Iterator) -> Reply Types Iterator = #objref Reply = {boolean(), Name} Name = string() This operation returns true if a Property Name exists at the current position and the out parameter is a valid Property Name. If false is returned the out parameter is a non-valid Property Name. next_n(Iterator, HowMany) -> Reply Types Iterator = #objref HowMany = long() Reply = {boolean(), [Name]} Name = string() This operation returns true if the requested number of Property Names can be delivered and there are additional property names. If false is returned a sequence of max HowMany property names will be returned and no more Property Names 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_PropertyNamesIterator(3erl)
Man Page