Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upAn abstraction over something which can serialize to/from bytes. #66
Comments
elizarov
added
feature
runtime-common
labels
Jan 8, 2018
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
JakeWharton
commented
Jan 8, 2018
•
JakeWharton
referenced this issue
Mar 6, 2018
Closed
Serialization function naming inconsistency #94
JakeWharton
referenced this issue
Mar 16, 2018
Closed
Make the API know about JSON and Protocol Buffers. #2
sandwwraith
added this to RC blockers
in 1.0 Release candidate
Apr 17, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JakeWharton commentedJan 8, 2018
I would expect the
JSON,ProtoBuf, andCBORclasses to all implement some common type to facilitate serialization to/from aT+KSerializer<T>to bytes. This is needed for something like a Retrofit 2 converter.Currently you can work around it with extension methods and passing around a pair of method references (but that's super annoying).