LKS_RequestHandler.h 333 B

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