增加麦序管理的协议

This commit is contained in:
zu
2021-11-04 19:01:19 +08:00
parent 06b1262740
commit 670e0c8e78
8 changed files with 47 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
//
// 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