We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
at the moment it is difficult to tell which endpoint is used where and validate that all endpoints are available in the API.
Come up with mechanism that allows
The text was updated successfully, but these errors were encountered:
could use enum client.get(Router.GET_BLOCK.with(height))
client.get(Router.GET_BLOCK.with(height))
or perhaps even better use static fields that could each have different implementation, allowing for forced API (types and counts of arguments)
public class Router { public static final GetByOneArgument<BigInteger> GET_BLOCK = new GetByOneArgument<>("/block/{height}", "{height}"); }
or build the request reactivex style?
client.get(Routes.GET_BLOCK).withHeight(BigInteger.ONE)...
Sorry, something went wrong.
No branches or pull requests
at the moment it is difficult to tell which endpoint is used where and validate that all endpoints are available in the API.
Come up with mechanism that allows
The text was updated successfully, but these errors were encountered: