Back to project page filmster.
The source code is released under:
Apache License
If you think the Android project filmster 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.doodeec.filmster.ApplicationState; // w w w. jav a 2s. co m /** * Created by Dusan Doodeec Bartos on 31.10.2014. * * Used in activity to notify about connection state change */ public interface ConnectionStateChange { /** * Fired when network connection was initialized */ public void onConnectionGained(); /** * Fired when network connection was lost */ public void onConnectionLost(); }