As the dbmlsync server runs a synchronization it generates a series of events that contain information about the progress of the synchronization. These events are sent from the server to the DbmlsyncClient class, which queues them. When the GetEvent method is called, the next event in the queue is returned if there is one waiting.
DBSC_GetEventRet GetEvent( DBSC_Event **event, unsigned timeout )
If there are no events waiting in the queue, this method waits until an event is available or until the specified timeout has expired before returning.
The types of event that are generated for a synchronization can be controlled using properties. See SetProperty method.
event If the return value is DBSC_GETEVENT_OK then the event parameter is filled in with a pointer to a DBSC_Event structure containing information about the event that has been retrieved. When you are finished with the event structure you must call the FreeEventInfo method to free memory associated with it. See DBSC_Event structure and FreeEventInfo method.
timeout Specifies the maximum number of milliseconds to wait if no event is immediately available to return. Use DBSC_INFINITY to wait forever.
Returns one of the following:
DBSC_GETEVENT_OK Indicates that an event was successfully retrieved.
DBSC_GETEVENT_TIMED_OUT Indicates that the timeout expired without any event being available to return.
DBSC_GETEVENT_FAILED Indicates that no event was returned because of an error condition. When DBSC_GETEVENT_FAILED is returned, you can call the GetErrorInfo method to find out more about why the method failed. See GetErrorInfo method.
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |