| 123456789101112131415161718 |
- //
- // RACMulticastConnection+Private.h
- // ReactiveObjC
- //
- // Created by Josh Abernathy on 4/11/12.
- // Copyright (c) 2012 GitHub, Inc. All rights reserved.
- //
- #import "RACMulticastConnection.h"
- @class RACSubject;
- @interface RACMulticastConnection<__covariant ValueType> ()
- - (instancetype)initWithSourceSignal:(RACSignal<ValueType> *)source subject:(RACSubject *)subject;
- @end
|