Back to project page client-android.
The source code is released under:
Apache License
If you think the Android project client-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.qmonix.sdk; // ww w .j a v a 2 s. c o m /** * Used by EventDispatcher.dispatch() to notify when event dispatching is done: either on success or * on failure. */ public interface EventDispatchHandler { public void onSuccess(); public void onError(String errorMessage); }