Back to project page walkitalkie.
The source code is released under:
Apache License
If you think the Android project walkitalkie 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 org.miloss; /*from w ww. j av a 2 s. c o m*/ import java.io.IOException; public interface Communicator { void send(SoundBite soundBite) throws IOException; void addSoundBiteListener(SoundBiteListener listener); void removeSoundBiteListener(SoundBiteListener listener); }