|
Post by jacecen on Oct 16, 2018 11:15:28 GMT
How can I capture the notification of initiating an automatic synchronization to detect if there is connectivity to the server?. I use RhoMobile 5.5
|
|
|
Post by Vladimir Musulainen on Oct 16, 2018 11:31:03 GMT
You should use setNotification method. In Ruby you code make like Rho::RhoConnectClient.setNotification('*', sync_callback)
def sync_callback(result) { # process result here # where result is hash } More about sync callback parameters your can find here
|
|