Files
midi_ios/Pods/ReactiveObjC/ReactiveObjC/RACQueueScheduler.h
2025-08-14 10:07:49 +08:00

23 lines
568 B
Objective-C

//
// RACQueueScheduler.h
// ReactiveObjC
//
// Created by Josh Abernathy on 11/30/12.
// Copyright (c) 2012 GitHub, Inc. All rights reserved.
//
#import "RACScheduler.h"
NS_ASSUME_NONNULL_BEGIN
/// An abstract scheduler which asynchronously enqueues all its work to a Grand
/// Central Dispatch queue.
///
/// Because RACQueueScheduler is abstract, it should not be instantiated
/// directly. Create a subclass using the `RACQueueScheduler+Subclass.h`
/// interface and use that instead.
@interface RACQueueScheduler : RACScheduler
@end
NS_ASSUME_NONNULL_END