azure-functions-java-worker
azure-functions-java-worker copied to clipboard
Java runtime and core types for Microsoft Azure Functions
Related: https://github.com/Azure/azure-functions-host/issues/6879 **Describe the request: A clear and concise description.** Make sure we are doing the following things to enable logging: - Allow functions to have `logging.debug` (or equivalent in...
I have created HttpTrigger Azure Function. I am calling by HTTP post request with body > [ { "topic": "string", "subject": "string", "id": "string", "eventType": "UsageDetail", "data": {}, "dataVersion": "string",...
Hi all, **Current problem** The Gson instance used by `RpcUnspecifiedDataTarget` is hardcoded in `RpcJsonDataSource` https://github.com/Azure/azure-functions-java-worker/blob/3ec27b2b82ba96adef593d51b0bb0e9c0063bfaa/src/main/java/com/microsoft/azure/functions/worker/binding/RpcUnspecifiedDataTarget.java#L68 https://github.com/Azure/azure-functions-java-worker/blob/3ec27b2b82ba96adef593d51b0bb0e9c0063bfaa/src/main/java/com/microsoft/azure/functions/worker/binding/RpcJsonDataSource.java#L20 This means that customizing the way the runtime Json-serializes objects (especially dates) is impossible....
### Summary The Java language worker should support a custom middleware feature that enables the following: - Ability to inspect and change trigger input type and value - Ability to...
Some of the Azure services w/ a [managed Java runtime](https://docs.microsoft.com/en-us/azure/developer/java/fundamentals/java-support-on-azure#supported-java-versions-and-update-schedule) are able to use Java 17. When will Azure Functions support Java 17?
It is possible, and not too difficult, to run Scala on Azure Functions using the Java Worker with a little bit of tweaking of how the project builds in sbt...
Add support for functions to run async. For example ```java @FunctionName("HttpTrigger-JavaAsync") public CompletableFuture runAsync( @HttpTrigger(name = "req", methods = {HttpMethod.GET, HttpMethod.POST}, authLevel = AuthorizationLevel.FUNCTION) HttpRequestMessage request, final ExecutionContext context) ```...
#### Investigative information Please provide the following: - Timestamp: 06/06/2022 - Function App name: N/A - Function name(s) (as appropriate): N/A - Invocation ID: N/A - Region: Local #### Repro...
For best practices please for Package com.google.gson.internal Do NOT use any class in this package as they are meant for internal use in Gson. These classes will very likely change...