com.smaxe.me.uv.client
Interface SharedObject.IListener

All Known Implementing Classes:
SharedObject.ListenerAdapter
Enclosing class:
SharedObject

public static interface SharedObject.IListener

IListener - SharedObject listener.


Method Summary
 void onAsyncError(SharedObject source, java.lang.String message, java.lang.Exception e)
          Notifies about an exception that is thrown asynchronously (from native asynchronous code).
 void onNetStatus(SharedObject source, java.util.Hashtable info)
          Notifies about the status info change.
 void onSync(SharedObject source, java.util.Vector changeList)
          Notifies that remote shared object (SharedObject) has been updated by the server.
 

Method Detail

onAsyncError

void onAsyncError(SharedObject source,
                  java.lang.String message,
                  java.lang.Exception e)
Notifies about an exception that is thrown asynchronously (from native asynchronous code).

Note: This method is invoked in the Dispatch-Thread. Process it quickly.

Parameters:
source - async message source
message - async message
e - thrown exception

onNetStatus

void onNetStatus(SharedObject source,
                 java.util.Hashtable info)
Notifies about the status info change.

Note: This method is invoked in the Dispatch-Thread. Process it quickly.

Parameters:
source - net status source
info - status info

onSync

void onSync(SharedObject source,
            java.util.Vector changeList)
Notifies that remote shared object (SharedObject) has been updated by the server.

Note: This method is invoked in the Dispatch-Thread. Process it quickly.

Parameters:
source - change source
changeList - change list