Decorator to run a function as a tasklet when called.
google.appengine.ext.ndb.synctasklet(func)
Use this to wrap a request handler function that will be called by
some web application framework (e.g. a Django view function or a
webapp.RequestHandler.get method).
[[["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 decorator converts a regular function into a tasklet when it's called."],["It is used to wrap request handler functions, which are typically called by web application frameworks."],["The decorator is named `synctasklet` and is part of the `google.appengine.ext.ndb` module."]]],[]]