All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jdcloud.function.Context Maven / Gradle / Ivy

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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy