Skip to content

Commit

Permalink
Use blocking interface in annotation processor example
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoenig10 authored Jul 21, 2023
1 parent eb1c397 commit 32bc045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ import java.util.UUID;
public interface MyService {

@Request(method = HttpMethod.POST, path = "/params/{myPathParam}/{myPathParam2}", accept=MyCustomResponseDeserializer.class)
ListenableFuture<MyCustomResponse> params(
MyCustomResponse params(
@Request.QueryParam("q") String query,
// Path parameter variable name must match the request path component
@Request.PathParam UUID myPathParam,
Expand Down

0 comments on commit 32bc045

Please sign in to comment.