software.amazon.jsii.JsiiCallbackHandler 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;
import software.amazon.jsii.api.Callback;
import com.fasterxml.jackson.databind.JsonNode;
/**
* Invoked to handle native synchronous callbacks.
*/
public interface JsiiCallbackHandler {
/**
* Invoked to handle a request from jsii to process a native (java) callback.
* @param callback The callback info.
* @return The return value of the callback.
*/
JsonNode handleCallback(Callback callback);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy