Back to project page Android-NetPowerctrl-Shared.
The source code is released under:
Copyright (c) 2014, David Gr?ff All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: *...
If you think the Android project Android-NetPowerctrl-Shared 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 oly.netpowerctrl.plugin; /** * Implement this interface and register to {@link oly.netpowerctrl.plugin.App2PluginService} to get notified of * ready and disconnected service events. */ public interface onServiceStateChange { void onServiceReady(App2PluginService service); void onServiceDisconnected(); }