You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
641 B

//
// BLEBLDelegate.h
// BluetoothDemo
//
// Created by mac on 17/3/13.
// Copyright © 2017年 . All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BlueToothEume.h"
@class BLEBaseBl;
@protocol BLEBLDelegate <NSObject>
/**
* 业务处理完成回调方法
*/
- (void)finishedHandle:(BLEBaseBl*)bl data:(NSDictionary *)data cmd:(BleCMD)cmd;
@optional
/**
* 业务处理失败回调方法
*/
- (void)failedHandle:(BLEBaseBl*)bl data:(NSDictionary *)data cmd:(BleCMD)cmd;
@optional
/**
* 业务处理超时回调方法
*/
- (void)timeOutHandle:(BLEBaseBl*)bl data:(NSDictionary *)data cmd:(BleCMD)cmd;
@end