Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cosnotifychanneladmin_eventchannelfactory(3erl) [linux man page]

CosNotifyChannelAdmin_EventChannelFactory(3erl) 	     Erlang Module Definition		   CosNotifyChannelAdmin_EventChannelFactory(3erl)

NAME
CosNotifyChannelAdmin_EventChannelFactory - This module implements the OMG CosNotifyChannelAdmin::EventChannelFactory interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosNotification/include/*.hrl"). EXPORTS
create_channel(ChannelFactory, InitialQoS, InitialAdmin) -> Return Types ChannelFactory = #objref InitialQoS = CosNotification::QoSProperties InitialAdmin = CosNotification::AdminProperties Return = {EventChannel, ChannelID} EventChannel = #objref ChannelID = long() This operation creates a new event channel. Along with the channel reference an id is returned which can be used when invoking other operations exported by this module. The Quality of Service argument supplied will be inherited by objects created by the channel. For more information about QoS settings see the User's Guide . If no QoS- and/or Admin-properties are supplied (i.e. empty list), the default settings will be used. For more information, see the User's Guide. get_all_channels(ChannelFactory) -> ChannelIDSeq Types ChannelFactory = #objref ChannelIDSeq = [long()] This operation returns a id sequence of all channel's created by this ChannelFactory. get_event_channel(ChannelFactory, ChannelID) -> Return Types ChannelFactory = #objref ChannelID = long() Retrurn = EventChannel | {'EXCEPTION', #'CosNotifyChannelAdmin_ChannelNotFound'{}} EventChannel = #objref This operation returns the EventChannel associated with the given id. If no channel is associated with the id, i.e., never existed or have been terminated, an exception is raised. Ericsson AB cosNotification 1.1.16 CosNotifyChannelAdmin_EventChannelFactory(3erl)

Check Out this Related Man Page

CosNotifyFilter_FilterAdmin(3erl)			     Erlang Module Definition				 CosNotifyFilter_FilterAdmin(3erl)

NAME
CosNotifyFilter_FilterAdmin - This module implements the OMG CosNotifyFilter::FilterAdmin interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosNotification/include/*.hrl"). All objects, which inherit this interface, export functions described in this module. EXPORTS
add_filter(Object, Filter) -> FilterID Types Object = #objref Filter = #objref FilterID = long() This operation connects a new Filter to the target object. This Filter will, together with other associated Filters , be used to select events to forward. A unique Id is returned and should be used if we no longer want to consult the given Filter . remove_filter(Object, FilterID) -> ok Types Object = #objref FilterID = long() If a certain Filter no longer should be associated with the target object this operation must be used. Events will no longer be tested against the Filter associated with the given Id. get_filter(Object, FilterID) -> Reply Types Object = #objref FilterID = long() Reply = Filter | {'EXCEPTION', #'CosNotifyFilter_FilterNotFound'{}} Filter = #objref If the target object is associated with a Filter matching the given Id the reference will be returned. If no such Filter is known by the target object an exception is raised. get_all_filters(Object) -> FilterIDSeq Types Object = #objref FilterIDSeq = [FilterID] FilterID = long() Id's for all Filter objects associated with the target object is returned by this operation. remove_all_filters(Object) -> ok Types Object = #objref If we want to remove all Filters associated with the target object we can use this function. Ericsson AB cosNotification 1.1.16 CosNotifyFilter_FilterAdmin(3erl)
Man Page