![JAR search and dependency download from the Maven repository](/logo.png)
reactor.bus.registry.CachableRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactor-bus Show documentation
Show all versions of reactor-bus Show documentation
Reactor Event Bus components
The newest version!
/*
* Copyright (c) 2011-2014 Pivotal Software, 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 reactor.bus.registry;
import reactor.bus.selector.ObjectSelector;
import reactor.bus.selector.Selector;
import reactor.fn.Pausable;
/**
* @author Jon Brisbin
*/
public class CachableRegistration implements Registration {
private static final Selector NO_MATCH = new ObjectSelector(null) {
@Override
public boolean matches(Void key) {
return false;
}
};
private final Selector selector;
private final V object;
private final Runnable onCancel;
private final boolean lifecycle;
private volatile boolean cancelled = false;
private volatile boolean cancelAfterUse = false;
private volatile boolean paused = false;
public CachableRegistration(Selector selector, V object, Runnable onCancel) {
this.selector = selector;
this.object = object;
this.onCancel = onCancel;
this.lifecycle = Pausable.class.isAssignableFrom(object.getClass());
}
@Override
@SuppressWarnings("unchecked")
public Selector getSelector() {
return (!cancelled ? selector : (Selector)NO_MATCH);
}
@Override
public V getObject() {
return (!cancelled && !paused ? object : null);
}
@Override
public Registration cancelAfterUse() {
this.cancelAfterUse = true;
return this;
}
@Override
public boolean isCancelAfterUse() {
return cancelAfterUse;
}
@Override
public Registration cancel() {
if (!cancelled) {
if (null != onCancel) {
onCancel.run();
}
if (lifecycle) {
((Pausable) object).cancel();
}
this.cancelled = true;
}
return this;
}
@Override
public boolean isCancelled() {
return cancelled;
}
@Override
public Registration pause() {
this.paused = true;
if (lifecycle) {
((Pausable) object).pause();
}
return this;
}
@Override
public boolean isPaused() {
return paused;
}
@Override
public Registration resume() {
paused = false;
if (lifecycle) {
((Pausable) object).resume();
}
return this;
}
@Override
public String toString() {
return "CachableRegistration{" +
"\n\tselector=" + selector +
",\n\tobject=" + object +
",\n\tonCancel=" + onCancel +
",\n\tlifecycle=" + lifecycle +
",\n\tcancelled=" + cancelled +
",\n\tcancelAfterUse=" + cancelAfterUse +
",\n\tpaused=" + paused +
"\n}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy