Azure / Azure/azure-functions-java-worker
Add support for functions that return a Future
オープン
area:java-functions
New Feature
P1
reviewed
- 主要言語
- Java
- スター
- 103
- フォーク
- 74
- 平均マージ
- 4日 8時間
- マージ済み PR(30日)
- 2
説明
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.
コントリビューションガイド
評価
この issue はまだ評価されていません。