Back to project page Swinedroid.
The source code is released under:
GNU General Public License
If you think the Android project Swinedroid 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.legind.swinedroid.NetworkRunnable; /*from w ww .j av a 2 s . com*/ import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; public interface NetworkRunnableBindRequires { ComponentName startService(Intent service); void unbindService(ServiceConnection conn); boolean bindService (Intent service, ServiceConnection conn, int flags); Long getRowId(); Context getContext(); void onBoundRequestSet(); void finish(); }