com.jdcloud.function.PojoRequestHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-runtime Show documentation
Show all versions of java-runtime Show documentation
JDCLOUD Function Service SDK
The newest version!
package com.jdcloud.function;
public interface PojoRequestHandler {
/**
* Handles a function compute invoke request
* Handles a function compute invoke request
* @param input The function input as a Pojo
* @param context The function execution environment context object.
* @return The function output as a Pojo
*/
public Output handleRequest(Input input, Context context);
}