Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

costime_timeservice(3erl) [linux man page]

CosTime_TimeService(3erl)				     Erlang Module Definition					 CosTime_TimeService(3erl)

NAME
CosTime_TimeService - This module implements the OMG CosTime::TimeService interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosTime/include/*.hrl"). EXPORTS
universal_time(TimeService) -> Reply Types TimeService = #objref Reply = UTO | {'EXCEPTION", #'TimerService_TimeUnavailable'{}} UTO = #objref This operation returns the current time and the Inaccuracy given when starting this application in a UTO. The time base is 15 octo- ber 1582 00:00 . Comparing two time objects which use different time base is, by obvious reasons, pointless. new_universal_time(TimeService, Time, Inaccuracy, Tdf) -> UTO Types TimeService = UTO = #objref Time = Inaccuracy = ulonglong() Tdf = short() This operation creates a new UTO object representing the time parameters given. This is the only way to create a UTO with an arbi- trary time from its components. This is useful when using the Timer Event Service. uto_from_utc(TimeService, Utc) -> UTO Types TimeService = UTO = #objref Utc = #'TimeBase_UtcT'{time, inacclo, inacchi, tdf} time = ulonglong() inacclo = ulong() inacchi = ushort() tdf = short() This operation is used to create a UTO given a time in the Utc form. new_interval(TimeService, Lower, Upper) -> TIO Types TimeService = TIO = #objref Lower = Upper = ulonglong() This operation is used to create a new TIO object, representing the input parameters. If Lower is greater than Upper BAD_PARAM is raised. Ericsson AB cosTime 1.1.10 CosTime_TimeService(3erl)

Check Out this Related Man Page

CosNotifyChannelAdmin_ProxyPushConsumer(3erl)		     Erlang Module Definition		     CosNotifyChannelAdmin_ProxyPushConsumer(3erl)

NAME
CosNotifyChannelAdmin_ProxyPushConsumer - This module implements the OMG CosNotifyChannelAdmin::ProxyPushConsumer 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_NotifyPublish * CosNotification_QoSAdmin * CosNotifyFilter_FilterAdmin * CosNotifyChannelAdmin_ProxyConsumer EXPORTS
connect_any_push_supplier(ProxyPushConsumer, PushSupplier) -> Reply Types ProxyPushConsumer = #objref PushSupplier = #objref Reply = ok | {'EXCEPTION', #'CosEventChannelAdmin_AlreadyConnected'{}} This operation connects a PushSupplier to the target object. If a connection already exists the AlreadyConnected exception is raised. push(ProxyPushConsumer, Event) -> Reply Types ProxyPushConsumer = #objref Event = #any Reply = ok | {'EXCEPTION', #'CosEventChannelAdmin_Disconnected'{}} This operation pushes an #any{} event to the target object. If no client have been connected the Disconnected exception is raised. disconnect_push_consumer(ProxyPushConsumer) -> ok Types ProxyPushConsumer = #objref Invoking this operation will cause the target object to close the connection and terminate. Ericsson AB cosNotification 1.1.16 CosNotifyChannelAdmin_ProxyPushConsumer(3erl)
Man Page