You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the signature of Javascript serializers is confusing (they are called with a second argument that is different depending on who is calling them). Additionally, we have an instance serialize and a static serialize. #1300 addresses some of this, but we should get a clean consistent picture of serializers and deserializers for 7.0.
I'd like whatever we come up with to address:
transferring information by transferring a delta of the existing attribute (which means that the deserializer needs to have access to the current state, which means the deserializer probably can't be called from a static method)
Consistent signature for the serializer/deserializer
The text was updated successfully, but these errors were encountered:
Currently the signature of Javascript serializers is confusing (they are called with a second argument that is different depending on who is calling them). Additionally, we have an instance serialize and a static serialize. #1300 addresses some of this, but we should get a clean consistent picture of serializers and deserializers for 7.0.
I'd like whatever we come up with to address:
The text was updated successfully, but these errors were encountered: