/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/main/java/io/reactivex/rxjava4/disposables/Disposable.java
172 строки
6 KB
David Karnok
4.x: Streamable + repeat, repeatWhen, retry, retryWhen (#8232)
12 июл 2026, 13:43
Не верифицирован
12 июл 2026, 13:43
50e5f3e
Код
Авторство
О чём код?
/* * Copyright (c) 2016-present, RxJava Contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See * the License for the specific language governing permissions and limitations under the License. */ package io.reactivex.rxjava4.disposables; import java.util.Objects; import java.util.concurrent.Flow.Subscription; import java.util.concurrent.Future; import io.reactivex.rxjava4.annotations.NonNull; import io.reactivex.rxjava4.functions.Action; import io.reactivex.rxjava4.internal.disposables.EmptyDisposable; import io.reactivex.rxjava4.internal.functions.Functions; /** * Represents a disposable resource or ongoing task. */ public interface Disposable { /** * Dispose the resource, the operation should be idempotent. */ void dispose(); /** * Returns true if this resource has been disposed. * @return true if this resource has been disposed */ boolean isDisposed(); /** * Construct a {@code Disposable} by wrapping a {@link Runnable} that is * executed exactly once when the {@code Disposable} is disposed. * @param run the {@code Runnable} to wrap * @return the new {@code Disposable} instance * @throws NullPointerException if {@code run} is {@code null} * @since 3.0.0 */ @NonNull static Disposable fromRunnable(@NonNull Runnable run) { Objects.requireNonNull(run, "run is null"); return new RunnableDisposable(run); } /** * Construct a {@code Disposable} by wrapping a {@link Action} that is * executed exactly once when the {@code Disposable} is disposed. * @param action the {@code Action} to wrap * @return the new {@code Disposable} instance * @throws NullPointerException if {@code action} is {@code null} * @since 3.0.0 */ @NonNull static Disposable fromAction(@NonNull Action action) { Objects.requireNonNull(action, "action is null"); return new ActionDisposable(action); } /** * Construct a {@code Disposable} by wrapping a {@link Future} that is * cancelled exactly once when the {@code Disposable} is disposed. * <p> * The {@code Future} is cancelled with {@code mayInterruptIfRunning == true}. * @param future the {@code Future} to wrap * @return the new {@code Disposable} instance * @throws NullPointerException if {@code future} is {@code null} * @see #fromFuture(Future, boolean) * @since 3.0.0 */ @NonNull static Disposable fromFuture(@NonNull Future<?> future) { Objects.requireNonNull(future, "future is null"); return fromFuture(future, true); } /** * Construct a {@code Disposable} by wrapping a {@link Future} that is * cancelled exactly once when the {@code Disposable} is disposed. * @param future the {@code Future} to wrap * @param allowInterrupt if true, the future cancel happens via {@code Future.cancel(true)} * @return the new {@code Disposable} instance * @throws NullPointerException if {@code future} is {@code null} * @since 3.0.0 */ @NonNull static Disposable fromFuture(@NonNull Future<?> future, boolean allowInterrupt) { Objects.requireNonNull(future, "future is null"); return new FutureDisposable(future, allowInterrupt); } /** * Construct a {@code Disposable} by wrapping a {@link Subscription} that is * cancelled exactly once when the {@code Disposable} is disposed. * @param subscription the {@code Runnable} to wrap * @return the new {@code Disposable} instance * @throws NullPointerException if {@code subscription} is {@code null} * @since 3.0.0 */ @NonNull static Disposable fromSubscription(@NonNull Subscription subscription) { Objects.requireNonNull(subscription, "subscription is null"); return new SubscriptionDisposable(subscription); } /** * Construct a {@code Disposable} by wrapping an {@link AutoCloseable} that is * closed exactly once when the {@code Disposable} is disposed. * @param autoCloseable the {@code AutoCloseable} to wrap * @return the new {@code Disposable} instance * @throws NullPointerException if {@code autoCloseable} is {@code null} * @since 3.0.0 */ @NonNull static Disposable fromAutoCloseable(@NonNull AutoCloseable autoCloseable) { Objects.requireNonNull(autoCloseable, "autoCloseable is null"); return new AutoCloseableDisposable(autoCloseable); } /** * Construct an {@link AutoCloseable} by wrapping a {@code Disposable} that is * disposed when the returned {@code AutoCloseable} is closed. * @param disposable the {@code Disposable} instance * @return the new {@code AutoCloseable} instance * @throws NullPointerException if {@code disposable} is {@code null} * @since 3.0.0 */ @NonNull static AutoCloseable toAutoCloseable(@NonNull Disposable disposable) { Objects.requireNonNull(disposable, "disposable is null"); return disposable::dispose; } /** * Wraps this {@code Disposable} into an {@link AutoCloseable} instance * that can be used with try-with-resources constructs. * @return the new {@code AutoCloseable} instance * @since 4.0.0 */ @NonNull default AutoCloseable asAutoCloseable() { return this::dispose; } /** * Returns a new, non-disposed {@code Disposable} instance. * @return a new, non-disposed {@code Disposable} instance * @since 3.0.0 */ @NonNull static Disposable empty() { return fromRunnable(Functions.EMPTY_RUNNABLE); } /** * Returns a shared, disposed {@code Disposable} instance. * @return a shared, disposed {@code Disposable} instance * @since 3.0.0 */ @NonNull static Disposable disposed() { return EmptyDisposable.INSTANCE; } }