* Example usage: *
* Observable.just(1)
* .as(AutoDispose.autoDisposable(scope))
* .subscribe(...)
*
*
* @param provider the target scope provider
* @param the stream type.
* @return an {@link AutoDisposeConverter} to transform with operators like
* {@link Observable#as(ObservableConverter)}
*/
public static AutoDisposeConverter autoDisposable(final ScopeProvider provider) {...}
@tsmith | https://github.com/uber/AutoDispose