Back to project page dissertation-project.
The source code is released under:
MIT License
If you think the Android project dissertation-project 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.fyp.resilience.swarm.helper; // w w w.ja va 2 s .c om import android.content.Context; public interface SwarmHelperInterface { public void initialise(); public void register(int port, boolean discover, Context context); public void discover(); public void stopDiscovery(); public void tearDown(); }