酷店

AlibcThread.h 713B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * AlibcThread.h
  3. *
  4. * 阿里百川电商
  5. * 项目名称:阿里巴巴电商 AlibcTradeCommon
  6. * 版本号:3.1.1.93
  7. * 发布时间:2017-03-06
  8. * 开发团队:阿里巴巴百川商业化团队
  9. * 阿里巴巴电商SDK答疑群号:1229144682(阿里旺旺)
  10. * Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
  11. */
  12. #import <Foundation/Foundation.h>
  13. #ifndef AlibcThread_h
  14. #define AlibcThread_h
  15. @interface AlibcThread : NSObject
  16. /**
  17. * 提交到主线程运行
  18. */
  19. + (void)foreground:(dispatch_block_t)block;
  20. /**
  21. * 提交到后台主线程
  22. */
  23. + (void)backgroundMain:(dispatch_block_t)block;
  24. + (void)backgroundConcurrentTask:(dispatch_block_t)block;
  25. @end
  26. #endif