org.jetbrains.concurrency.DonePromise Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A packaging of the IntelliJ Community Edition core-api library.
This is release number 1 of trunk branch 142.
The newest version!
/*
* Copyright 2000-2015 JetBrains s.r.o.
*
* 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 org.jetbrains.concurrency;
import com.intellij.openapi.util.Getter;
import com.intellij.util.Consumer;
import com.intellij.util.Function;
import org.jetbrains.annotations.NotNull;
class DonePromise extends Promise implements Getter {
private final T result;
public DonePromise(T result) {
this.result = result;
}
@NotNull
@Override
public Promise done(@NotNull Consumer done) {
if (!AsyncPromise.isObsolete(done)) {
done.consume(result);
}
return this;
}
@NotNull
@Override
public Promise processed(@NotNull AsyncPromise fulfilled) {
fulfilled.setResult(result);
return this;
}
@Override
public Promise processed(@NotNull Consumer processed) {
done(processed);
return this;
}
@NotNull
@Override
public Promise rejected(@NotNull Consumer rejected) {
return this;
}
@NotNull
@Override
public Promise then(@NotNull Function done) {
if (done instanceof Obsolescent && ((Obsolescent)done).isObsolete()) {
return Promise.reject("obsolete");
}
else {
return Promise.resolve(done.fun(result));
}
}
@NotNull
@Override
public Promise then(@NotNull AsyncFunction done) {
return done.fun(result);
}
@NotNull
@Override
public State getState() {
return State.FULFILLED;
}
@Override
public T get() {
return result;
}
@Override
void notify(@NotNull AsyncPromise child) {
child.setResult(result);
}
}