IBluetoothCallback.kt 278 B

12345678910
  1. package xn.hxp.blu.bean
  2. import android.bluetooth.BluetoothSocket
  3. interface IBluetoothCallback {
  4. fun onReStart() //开始连接
  5. fun onIsConnected(msg:String)//连接失败
  6. fun onConnectError()//连接异常
  7. fun onBluetoothSocketBean(sockets: BluetoothSocket)
  8. }