Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

costimerevent_timereventhandler(3erl) [linux man page]

CosTimerEvent_TimerEventHandler(3erl)			     Erlang Module Definition			     CosTimerEvent_TimerEventHandler(3erl)

NAME
CosTimerEvent_TimerEventHandler - This module implements the OMG CosTimerEvent::TimerEventHandler interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosTime/include/*.hrl"). EXPORTS
'_get_status'(TimerEventHandler) -> Reply Types TimerEventHandler = #objref Reply = 'ESTimeSet' | 'ESTimeCleared' | 'ESTriggered' | 'ESFailedTrigger' This operation returns the status of the target object. * 'ESTimeSet' - timer is set to trigger event(s). * 'ESTimeCleared' - no time set or the timer have been reset. * 'ESTriggered' - event has already been sent. * 'ESFailedTrigger' - tried to, but failed, sending the event. If the target object is of type 'TTPeriodic' the status value 'ESTriggered' is not valid. time_set(TimerEventHandler) -> Reply Types TimerEventHandler = #objref Reply = {boolean(), UTO} UTO = #objref This operation returns true if the time has been set for an event that is yet to be triggered, false otherwise. The outparameter represents the current time value of the target object. set_timer(TimerEventHandler, TimeType, TriggerTime) -> void() Types TimerEventHandler = #objref TimeType = 'TTAbsolute' | 'TTRelative' | 'TTPeriodic' TriggerTime = UTO UTO = #objref This operation terminates any previous set trigger, and set a new trigger specified by the TimeType and UTO objects. The relation between the UTO object and the TimeTypes are: * 'TTAbsolute' - the UTO object must represent absolute time, i.e., number of 100 nanoseconds passed since 15 october 1582 00:00. * 'TTRelative' - the UTO object must represent the from now until when the event should be triggered, e.g., within 30*10^7 nanoseconds. * 'TTPeriodic' - the same as for 'TTRelative', but this option will trigger an event periodically until timer cancelled. cancel_timer(TimerEventHandler) -> boolean() Types TimerEventHandler = #objref This operation cancel, if possible, the triggering of event(s). Returns true if an event is actually cancelled, false otherwise. set_data(TimerEventHandler, EventData) -> ok Types TimerEventHandler = #objref EventData = #any This operation changes the event data sent when triggered. Ericsson AB cosTime 1.1.10 CosTimerEvent_TimerEventHandler(3erl)

Check Out this Related Man Page

CosNotifyChannelAdmin_StructuredProxyPushSupplier(3erl)      Erlang Module Definition	   CosNotifyChannelAdmin_StructuredProxyPushSupplier(3erl)

NAME
CosNotifyChannelAdmin_StructuredProxyPushSupplier - This module implements the OMG CosNotifyChannelAdmin::StructuredProxyPushSupplier interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosNotification/include/*.hrl"). This module also exports the functions described in: * CosNotifyComm_NotifySubscribe * CosNotification_QoSAdmin * CosNotifyFilter_FilterAdmin * CosNotifyChannelAdmin_ProxySupplier EXPORTS
connect_structured_push_consumer(StructuredProxyPushSupplier, PushConsumer) -> Reply Types StructuredProxyPushSupplier = #objref PushConsumer = #objref Reply = ok | {'EXCEPTION', #'CosEventChannelAdmin_AlreadyConnected'{}} | {'EXCEPTION', #'CosEventChannelAdmin_TypeError'{}} This operation connects a PushConsumer to the target object. If a connection already exists or the function push_structured_event is not supported by the client object an exception is raised. suspend_connection(StructuredProxyPushSupplier) -> Reply Types StructuredProxyPushSupplier = #objref Reply = ok | {'EXCEPTION', #'CosNotifyChannelAdmin_ConnectionAlreadyInactive'{}} | {'EXCEPTION', #'CosNotifyChannelAdmin_Not- Connected'{}} This operation suspends the connection with the target object. If no connection exists or the connection already is suspended an exception is raised. resume_connection(StructuredProxyPushSupplier) -> Reply Types StructuredProxyPullConsumer = #objref Reply = ok | {'EXCEPTION', #'CosNotifyChannelAdmin_ConnectionAlreadyInactive'{}} | {'EXCEPTION', #'CosNotifyChannelAdmin_Not- Connected'{}} If the connection with the target object have been suspended this function must be used to resume the connection. If no client have been connected or the connection is active an exception is raised. disconnect_structured_push_supplier(StructuredProxyPushSupplier) -> ok Types StructuredProxyPushSupplier = #objref This operation cause the target object to close the connection and terminate. Ericsson AB cosNotification 1.1.16 CosNotifyChannelAdmin_StructuredProxyPushSupplier(3erl)
Man Page