Back to project page deskflix.
The source code is released under:
Apache License
If you think the Android project deskflix 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.urucas.deskflix.interfaces; //from w w w . j a va 2 s . c om import java.util.ArrayList; /** * Created by Urucas on 8/20/14. */ public interface RemoteControlCallback { public void onSocketFound(ArrayList<String> socketsName); public void onSocketDisconected(ArrayList<String> socketsName); }