software.amazon.jsii.JsiiPromise Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsii-runtime Show documentation
Show all versions of jsii-runtime Show documentation
Java client for jsii runtime
package software.amazon.jsii;
/**
* Represents a promise to a result of an async method execution.
*/
public final class JsiiPromise {
/**
* The ID of the promise.
*/
private String promiseId;
/**
* Creates a promise.
* @param promiseId The ID of the promise.
*/
public JsiiPromise(final String promiseId) {
this.promiseId = promiseId;
}
/**
* @return The ID of the promise.
*/
public String getPromiseId() {
return promiseId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy