代理模式(Proxy Pattern):前端設計模式中的代理模式是一種結構型模式,它允許在不改變原始對象的情況下,通過引入一個代理對象來控制對原始對象的訪問。代理對象充當原始對象的中介,客戶端與代理對象交互,代理對象再將請求轉發給原始對象。 代理模式在前端開發中經常被用來處理一些複雜或者耗時的操作, ...
//11.開啟藍牙適配器 openBluetoothAdapter
//21.開始搜索藍牙設備 startBluetoothDevicesDiscovery
//31.開啟監聽搜索藍牙設備 onBluetoothDeviceFound
//30.停止監聽搜索藍牙設備 offBluetoothDeviceFound
//20.停止搜索藍牙設備 stopBluetoothDevicesDiscovery
//10.關閉藍牙適配器 closeBluetoothAdapter
//41.連接設備 createBLEConnection
//51.監聽設備連接狀態 onBLEConnectionStateChange
//61.獲取設備服務 getBLEDeviceServices
//71.獲取設備特征 getBLEDeviceCharacteristics
//81.開啟特征變化訂閱 notifyBLECharacteristicValueChange -true
//91.開啟監聽特征值變化 onBLECharacteristicValueChange
//90.關閉監聽特征值變化 offBLECharacteristicValueChange
//80.關閉特征變化訂閱 notifyBLECharacteristicValueChange - false
//50.關閉監聽設備連接狀態 offBLEConnectionStateChange
//40.斷開設備 closeBLEConnection