Files
featherVoice/Pods/ReactiveObjC/ReactiveObjC/RACGroupedSignal.h
2025-08-08 10:49:36 +08:00

24 lines
474 B
Objective-C

//
// RACGroupedSignal.h
// ReactiveObjC
//
// Created by Josh Abernathy on 5/2/12.
// Copyright (c) 2012 GitHub, Inc. All rights reserved.
//
#import "RACSubject.h"
NS_ASSUME_NONNULL_BEGIN
/// A grouped signal is used by -[RACSignal groupBy:transform:].
@interface RACGroupedSignal : RACSubject
/// The key shared by the group.
@property (nonatomic, readonly, copy) id<NSCopying> key;
+ (instancetype)signalWithKey:(id<NSCopying>)key;
@end
NS_ASSUME_NONNULL_END