Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

costime_tio(3erl) [linux man page]

CosTime_TIO(3erl)					     Erlang Module Definition						 CosTime_TIO(3erl)

NAME
CosTime_TIO - This module implements the OMG CosTime::TIO interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosTime/include/*.hrl"). EXPORTS
'_get_time_interval'(TIO) -> TimeInterval Types TIO = #objref TimeInterval = #'TimeBase_IntervalT{lower_bound, upper_bound} lower_bound = upper_bound = ulonglong This operation returns the interval associated with the target object. spans(TIO, UTO) -> Reply Types TIO = UTO = OtherTIO = #objref Reply = {OverlapType, OtherTIO} OverlapType = 'OTContainer' | 'OTContained' | 'OTOverlap' | 'OTNoOverlap' This operation returns a OverlapType depending on how the interval in the target object and the timerange represented by the UTO object overlap. If the OverlapType is 'OTNoOverlap' the out parameter represents the gap between the two intervals. If OverlapType is one of the others, the out parameter represents the overlap interval. The definitions of the OverlapType's are: * 'OTContainer' - target objects lower and upper limits are, respectively, less or equal to and greater or equal to given object's. * 'OTContained' - target objects lower and upper limits are, respectively, greater or equal to and less or equal to given object's. * 'OTOverlap' - target objects interval overlap given object's. * 'OTNoOverlap' - target objects interval do not overlap given object's. overlaps(TIO, OtherTIO) -> Reply Types TIO = OtherTIO = AnotherTIO = #objref Reply = {OverlapType, AnotherTIO} OverlapType = 'OTContainer' | 'OTContained' | 'OTOverlap' | 'OTNoOverlap' This operation returns a OverlapType depending on how the interval in the target object and the timerange represented by the TIO object overlap. The OverlapType's are described under spans/2. time(TIO) -> UTO Types TIO = UTO = #objref This operation returns a UTO in which the interval equals the time interval in the target object and time value is the midpoint of the interval. Ericsson AB cosTime 1.1.10 CosTime_TIO(3erl)

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