ExecutionContext Interface

public interface ExecutionContext

The execution context enables interaction with the Azure Functions execution environment.

Method Summary

Modifier and Type Method and Description
String getFunctionName()

Returns the function name.

String getInvocationId()

Returns the invocation ID for the function call.

Logger getLogger()

Returns the built-in logger, which is integrated with the logging functionality provided in the Azure Functions portal, as well as in Azure Application Insights.

default RetryContext getRetryContext()

Returns the retry context.

default TraceContext getTraceContext()

Returns the trace context.

Method Details

getFunctionName

public String getFunctionName()

Returns the function name.

Returns:

the function name.

getInvocationId

public String getInvocationId()

Returns the invocation ID for the function call.

Returns:

the invocation ID for the function call.

getLogger

public Logger getLogger()

Returns the built-in logger, which is integrated with the logging functionality provided in the Azure Functions portal, as well as in Azure Application Insights.

Returns:

A Java logger that will see output directed to Azure Portal, as well as any other configured output locations.

getRetryContext

public default RetryContext getRetryContext()

Returns the retry context.

Returns:

the retry context

getTraceContext

public default TraceContext getTraceContext()

Returns the trace context.

Returns:

the trace context

Applies to