Back to project page senhancelib.
The source code is released under:
GNU Lesser General Public License
If you think the Android project senhancelib 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 de.uos.nbp.senhance.bluetooth; /* ww w .ja v a 2s . c o m*/ import de.uos.nbp.senhance.bluetooth.PacketConnection.Packet; public interface PacketConnectionHandler { void connectAttemptFailed(String message); void connectFailed(String message); void connected(); void connectionLost(String message); void connectionClosed(); void packetReceived(Packet receivedPacket); }