From 32bc045bae5bacddf63ea5db68eeabe41ee77412 Mon Sep 17 00:00:00 2001 From: Patrick Koenig Date: Fri, 21 Jul 2023 13:27:03 -0700 Subject: [PATCH] Use blocking interface in annotation processor example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd6846211..33cb4dfaf 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ import java.util.UUID; public interface MyService { @Request(method = HttpMethod.POST, path = "/params/{myPathParam}/{myPathParam2}", accept=MyCustomResponseDeserializer.class) - ListenableFuture params( + MyCustomResponse params( @Request.QueryParam("q") String query, // Path parameter variable name must match the request path component @Request.PathParam UUID myPathParam,