| com.rift.coad.web.admin.client.DaemonManagerAsync
DaemonManagerAsync | public interface DaemonManagerAsync (Code) | | The asynchronious interfaced for the daemon manager.
author: brett chaldecott |
Method Summary | |
public void | getDaemons(AsyncCallback callback) This method returns the list of daemons. | public void | getMethod(String objectName, String methodName, AsyncCallback callback) This method returns the method defintion for the requested method. | public void | getMethods(String name, AsyncCallback callback) This method returns the list of methods. | public void | invokeMethod(String objectName, MethodDef method, AsyncCallback callback) This method is called to invoke the daemon. |
getDaemons | public void getDaemons(AsyncCallback callback)(Code) | | This method returns the list of daemons.
Parameters: callback - The call back handler. |
getMethod | public void getMethod(String objectName, String methodName, AsyncCallback callback)(Code) | | This method returns the method defintion for the requested method.
Parameters: objectName - The name of the object to return. Parameters: methodName - The name of the method to return. Parameters: callback - The call back handler. |
getMethods | public void getMethods(String name, AsyncCallback callback)(Code) | | This method returns the list of methods.
Parameters: name - The name of the object that the methods are related to. Parameters: callback - The call back handler. |
invokeMethod | public void invokeMethod(String objectName, MethodDef method, AsyncCallback callback)(Code) | | This method is called to invoke the daemon.
Parameters: objectName - The name of the object to return. Parameters: method - The method to call. Parameters: callBack - The result of the call. |
|
|