21 lines
404 B
C
21 lines
404 B
C
![]() |
//
|
||
|
// MicroQueueProtocol.h
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by apple on 2021/11/4.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@class MicroQueueModel;
|
||
|
|
||
|
@protocol MicroQueueProtocol <NSObject>
|
||
|
@optional
|
||
|
- (NSMutableDictionary<NSString *, MicroQueueModel *>*)getMicroQueue;
|
||
|
- (void)onMicroQueueUpdate:(NSMutableDictionary<NSString *, MicroQueueModel *>*)queue;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|