/**@class android.os.CommonClock.OnServerDiedListener The OnServerDiedListener interface defines a method called by the {@link android.os.CommonClock} instance to indicate that the connection to the native media server has been broken and that the {@link android.os.CommonClock} instance will need to be released and re-created. The client application can implement this interface and register the listener with the {@link #setServerDiedListener}(OnServerDiedListener) method. */ var OnServerDiedListener = { /**Method called when the native media server has died. <p>If the native common time service encounters a fatal error and needs to restart, the binder connection from the {@link android.os.CommonClock} instance to the common time service will be broken. To restore functionality, clients should {@link #release}() their old visualizer and create a new instance. */ onServerDied : function( ) {}, };