hu.akarnokd.rxjava2.disposables.Disposables Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava2-backport Show documentation
Show all versions of rxjava2-backport Show documentation
rxjava2-backport developed by David Karnok
/**
* Copyright 2015 David Karnok and Netflix, Inc.
*
* 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 hu.akarnokd.rxjava2.disposables;
import java.util.concurrent.*;
import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
import org.reactivestreams.Subscription;
import hu.akarnokd.rxjava2.functions.Consumer;
import hu.akarnokd.rxjava2.internal.functions.Objects;
/**
* Utility class to help create disposables by wrapping
* other types.
*/
public final class Disposables {
/** Utility class. */
private Disposables() {
throw new IllegalStateException("No instances!");
}
public static Disposable from(Runnable run) {
Objects.requireNonNull(run, "run is null");
return new RunnableDisposable(run);
}
public static Disposable from(Future> future) {
return from(future, true);
}
public static Disposable from(final Subscription subscription) {
Objects.requireNonNull(subscription, "subscription is null");
return new Disposable() {
@Override
public void dispose() {
subscription.cancel();
}
};
}
public static Disposable from(Future> future, boolean allowInterrupt) {
Objects.requireNonNull(future, "future is null");
return new FutureDisposable(future, allowInterrupt);
}
static final Disposable EMPTY = new Disposable() {
@Override
public void dispose() { }
};
public static Disposable empty() {
return EMPTY;
}
// TODO there is no way to distinguish a disposed and non-disposed resource
static final Disposable DISPOSED = new Disposable() {
@Override
public void dispose() { }
};
public static Disposable disposed() {
return DISPOSED;
}
public static CompositeDisposable from(Disposable... resources) {
return new CompositeDisposable(resources);
}
/** Wraps a Runnable instance. */
static final class RunnableDisposable implements Disposable {
volatile Runnable run;
static final AtomicReferenceFieldUpdater RUN =
AtomicReferenceFieldUpdater.newUpdater(RunnableDisposable.class, Runnable.class, "run");
static final Runnable DISPOSED = new Runnable() {
@Override
public void run() { }
};
public RunnableDisposable(Runnable run) {
RUN.lazySet(this, run);
}
@Override
public void dispose() {
Runnable r = run;
if (r != DISPOSED) {
r = RUN.getAndSet(this, DISPOSED);
if (r != DISPOSED) {
r.run();
}
}
}
}
/** Wraps a Future instance. */
static final class FutureDisposable implements Disposable {
volatile Future> future;
final boolean allowInterrupt;
@SuppressWarnings("rawtypes")
static final AtomicReferenceFieldUpdater RUN =
AtomicReferenceFieldUpdater.newUpdater(FutureDisposable.class, Future.class, "future");
public FutureDisposable(Future> run, boolean allowInterrupt) {
this.allowInterrupt = allowInterrupt;
RUN.lazySet(this, run);
}
@Override
public void dispose() {
Future> r = future;
if (r != DisposedFuture.INSTANCE) {
r = RUN.getAndSet(this, DisposedFuture.INSTANCE);
if (r != DisposedFuture.INSTANCE) {
r.cancel(allowInterrupt);
}
}
}
}
/** A singleton instance of the disposed future. */
enum DisposedFuture implements Future
© 2015 - 2025 Weber Informatics LLC | Privacy Policy