LKS_RequestHandler.h 414 B

123456789101112131415161718192021
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LKS_RequestHandler.h
  4. // LookinServer
  5. //
  6. // Created by Li Kai on 2019/1/15.
  7. // https://lookin.work
  8. //
  9. #import <Foundation/Foundation.h>
  10. @interface LKS_RequestHandler : NSObject
  11. - (BOOL)canHandleRequestType:(uint32_t)requestType;
  12. - (void)handleRequestType:(uint32_t)requestType tag:(uint32_t)tag object:(id)object;
  13. @end
  14. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */