Implement this interface to define specific YAML event handling class.
Implementing classes instances are passed to the constructor of
EventListener to act as a receiver of YAML parse events.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-30 UTC."],[[["This document details the `yaml_listener` interface, which is used for parsing YAML files and is found in the Google Cloud Platform's App Engine Python Standard library."],["Implementing classes of this interface are designed to act as receivers for YAML parse events, and instances are passed to the constructor of `EventListener`."],["The `yaml_listener` interface includes methods such as `StreamStart`, `StreamEnd`, `DocumentStart`, `DocumentEnd`, `Alias`, `Scalar`, `SequenceStart`, `SequenceEnd`, `MappingStart`, and `MappingEnd`, each designed to handle specific YAML events."],["The methods provided by the `yaml_listener` interface take in an `event` and a `loader` to properly handle the different states of the parsing process."]]],[]]