洛阳学员端
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.

27 lines
586 B

7 months ago
  1. //
  2. // APBGatewayFacade.h
  3. // BioAuthEngine
  4. //
  5. // Created by richard on 26/02/2018.
  6. // Copyright © 2018 com..iphoneclient.DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef void (^apRpcCompletionBlock)(BOOL success, NSObject *result);
  10. @interface APBGatewayFacade : NSObject
  11. /**
  12. * rpc结果回调
  13. *
  14. * @param success ()
  15. * @param result
  16. */
  17. -(void)request:(id)bisUploadGwRequest
  18. withConfig:(NSDictionary *)configDict
  19. completionBlock:(apRpcCompletionBlock)blk;
  20. @end