Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

costime_uto(3erl) [linux man page]

CosTime_UTO(3erl)					     Erlang Module Definition						 CosTime_UTO(3erl)

NAME
CosTime_UTO - This module implements the OMG CosTime::UTO interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosTime/include/*.hrl"). EXPORTS
'_get_time'(UTO) -> ulonglong() Types UTO = #objref This operation returns the time associated with the target object. '_get_inaccuracy'(UTO) -> ulonglong() Types UTO = #objref This operation returns the inaccuracy associated with the target object. '_get_tdf'(UTO) -> short() Types UTO = #objref This operation returns the time displacement factor associated with the target object. '_get_utc_time'(UTO) -> UtcT Types UTO = #objref Utc = #'TimeBase_UtcT'{time, inacclo, inacchi, tdf} time = ulonglong() inacclo = ulong() inacchi = ushort() tdf = short() This operation returns the data associated with the target object in Utc form. absolute_time(UTO) -> OtherUTO Types UTO = OtherUTO = #objref This operation create a new UTO object representing the time in the target object added to current time (UTC). The time base is 15 october 1582 00:00 . Comparing two time objects which use different time base is, by obvious reasons, pointless. Raises DATA_CONVER- SION if causes an overflow. This operation is only useful if the target object represents a relative time. compare_time(UTO, ComparisonType, OtherUTO) -> Reply Types UTO = OtherUTO = #objref ComparisonType = 'IntervalC' | 'MidC' Reply = 'TCEqualTo' | 'TCLessThan' | 'TCGreaterThan' | 'TCIndeterminate' This operation compares the time associated with the target object and the given UTO object. The different ComparisonType are: * 'MidC' - only compare the time represented by each object. Furthermore, the target object is always used as the first parameter in the comparison, i.e., if the target object's time is larger 'TCGreaterThan' will be returned. * 'IntervalC' - also takes the inaccuracy into consideration, i.e., if the two objects interval overlaps 'TCIndeterminate' is returned, otherwise the as for 'MidC'. time_to_interval(UTO, OtherUTO) -> TIO Types UTO = OtherUTO = TIO = #objref This operation returns a TIO representing the interval between the target object and the given UTO midpoint times. The inaccuracy in the objects are not taken into consideration. interval(UTO) -> TIO Types UTO = TIO = #objref This operation creates a TIO object representing the error interval around the time value represented by the target object, i.e., TIO.upper_bound = UTO.time+UTO.inaccuracy and TIO.lower_bound = UTO.time-UTO.inaccuracy . Ericsson AB cosTime 1.1.10 CosTime_UTO(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