com.jdcloud.function.Context 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;
/**
* The context object allows you to access useful information available within the alibaba cloud
* function compute execution environment
*/
public interface Context {
/**
* Gets the alibaba cloud function compute request ID associated with the request. This is
* the same ID returned to the client that called invoke(). This ID is reused for retries on the
* same request.
*/
public String getRequestId();
/**
* Gets the function related parameters
*/
public FunctionParam getFunctionParam();
}