Back to project page Kite.
The source code is released under:
Apache License
If you think the Android project Kite 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 org.kite.wire; //from w ww. j a va 2 s .c o m import android.content.ComponentName; import android.os.IBinder; /** * This callback interface is to use with {@link Wire}. * It will be notified each time service is connected and disconnected * like {@link android.content.ServiceConnection} * * @author Nikolay Soroka */ public interface WireCallback { /**Called when service is connected. * * @param name * @param service */ void onConnect(ComponentName name, IBinder service); /**Called when service is disconnected. * */ void onDisconnect(); }