RACGroupedSignal.h 474 B

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