Back to project page MultiWork.
The source code is released under:
Copyright (c) 2013, Torti Andr?s Fernando All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions a...
If you think the Android project MultiWork 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.bluetoothutils.andres; //from w ww. j a va2s . co m import java.io.InputStream; import java.io.OutputStream; public interface OnNewBluetoothDataReceived { /** * Esta interface se ejecuta en un Thread diferente para no bloquear el UI al recibir los datos por * lo que si se desea modificar la UI debe hacerse desde el Thread correspondiente * @param mBTIn InputStream del Bluetooth * @param mBTOut OutputStream del Bluetooth * @return true si se continua el listener, false de otro modo */ public boolean onNewBluetoothDataReceivedListener (InputStream mBTIn, OutputStream mBTOut); }