Azure / Azure/azure-functions-java-worker
Add support for functions that return a Future
Offen
area:java-functions
New Feature
P1
reviewed
- Vorherrschende Sprache
- Java
- Sterne
- 103
- Forks
- 74
- Ø Merge
- 4 T. 8 Std.
- Gemergte PRs (30 T.)
- 2
Beschreibung
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)
```
Java worker should inspect function method signature, if it returns a `Future` invoke it asynchronously
and if not invoke the method synchronously.
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.