com.github.stonelion.promise.Promises Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of promise Show documentation
Show all versions of promise Show documentation
A promise library for jdk 7
The newest version!
package com.github.stonelion.promise;
import javax.annotation.Nonnull;
public class Promises {
@Nonnull
public static Promise newPromise(PromiseCall promiseCall) {
if (promiseCall == null) {
throw new NullPointerException();
}
return new PromiseImpl().setPromiseCall(promiseCall);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy