feroult / yawp

Kotlin/Java API framework for Google Appengine
http://yawp.io
MIT License
132 stars 20 forks source link

LazyJson<T> API #76

Closed feroult closed 8 years ago

feroult commented 8 years ago

Create a LazyJson API to support lazy parsing of JSON properties to speed up requests that don't need to parse all JSON properties of a given endpoint model.

The API should have be:

void set(T value);

T get();

The persistence drivers and the REST Json serializer need to know how to serialize/deserialize properties of this type.

feroult commented 8 years ago

Released with 1.6.0