You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
474 B
23 lines
474 B
// |
|
// 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
|
|
|