Back to project page trip-chain-android.
The source code is released under:
MIT License
If you think the Android project trip-chain-android 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 fi.aalto.tripchain.receivers; /** * Method start() starts receiving and stop() end the reception. * */ public interface Receiver { public void start(); public void stop(); }