| 1234567891011121314151617181920212223 |
- //
- // RACScopedDisposable.h
- // ReactiveObjC
- //
- // Created by Josh Abernathy on 3/28/12.
- // Copyright (c) 2012 GitHub, Inc. All rights reserved.
- //
- #import "RACDisposable.h"
- NS_ASSUME_NONNULL_BEGIN
- /// A disposable that calls its own -dispose when it is dealloc'd.
- @interface RACScopedDisposable : RACDisposable
- /// Creates a new scoped disposable that will also dispose of the given
- /// disposable when it is dealloc'd.
- + (instancetype)scopedDisposableWithDisposable:(RACDisposable *)disposable;
- @end
- NS_ASSUME_NONNULL_END
|