Clio develop
The XRP Ledger API server.
|
Contains common functionality for handling the server_info
command.
More...
#include <Feature.hpp>
Classes | |
struct | Input |
A struct to hold the input data for the command. More... | |
struct | Output |
A struct to hold the output data of the command. More... | |
Public Types | |
using | Result = HandlerReturnType<Output> |
Public Member Functions | |
FeatureHandler (std::shared_ptr< BackendInterface > const &backend, std::shared_ptr< data::AmendmentCenterInterface const > const &amendmentCenter) | |
Construct a new FeatureHandler object. | |
Result | process (Input input, Context const &ctx) const |
Process the Feature command. | |
Static Public Member Functions | |
static RpcSpecConstRef | spec (uint32_t apiVersion) |
Returns the API specification for the command. | |
Friends | |
void | tag_invoke (boost::json::value_from_tag, boost::json::value &jv, FeatureHandler::Output const &output) |
Convert the Output to a JSON object. | |
void | tag_invoke (boost::json::value_from_tag, boost::json::value &jv, Output::Feature const &feature) |
Convert the Feature to a JSON object. | |
Input | tag_invoke (boost::json::value_to_tag< Input >, boost::json::value const &jv) |
Convert a JSON object to Input type. | |
Contains common functionality for handling the server_info
command.
|
inline |
Construct a new FeatureHandler object.
backend | The backend to use |
amendmentCenter | The amendment center to use |
FeatureHandler::Result rpc::FeatureHandler::process | ( | FeatureHandler::Input | input, |
Context const & | ctx ) const |
Process the Feature command.
input | The input data for the command |
ctx | The context of the request |
|
static |
Returns the API specification for the command.
apiVersion | The api version to return the spec for |
|
friend |
Convert the Output to a JSON object.
[out] | jv | The JSON object to convert to |
output | The output to convert |
|
friend |
Convert the Feature to a JSON object.
[out] | jv | The JSON object to convert to |
feature | The feature to convert |