Handler for a rapidjson::Reader that translates reads into an AZ::Dom::Visitor. More...
#include <JsonSerializationUtils.h>
Public Member Functions | |
| RapidJsonReadHandler (Visitor *visitor, Lifetime stringLifetime) | |
| bool | Null () |
| bool | Bool (bool b) |
| bool | Int (int i) |
| bool | Uint (unsigned i) |
| bool | Int64 (int64_t i) |
| bool | Uint64 (uint64_t i) |
| bool | Double (double d) |
| bool | RawNumber (const char *str, rapidjson::SizeType length, bool copy) |
| bool | String (const char *str, rapidjson::SizeType length, bool copy) |
| bool | StartObject () |
| bool | Key (const char *str, rapidjson::SizeType length, bool copy) |
| bool | EndObject (rapidjson::SizeType memberCount) |
| bool | StartArray () |
| bool | EndArray (rapidjson::SizeType elementCount) |
| Visitor::Result && | TakeOutcome () |
Handler for a rapidjson::Reader that translates reads into an AZ::Dom::Visitor.