-
Notifications
You must be signed in to change notification settings - Fork 172
Serializable Wrappers #1156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serializable Wrappers #1156
Conversation
Builder added ability to create a ConsumerConfiguration from json.
Thanks @scottf . |
What edge cases? If the json is invalid, it will throw a parse error. Also since I run the json through the builder invalid data should be caught there but...I don't think it's necessary to handle edge cases. The expectation is that the json comes from the objects' |
Okay, then it should be pretty much covered @scottf. |
…uon' into serializable-consumer-configuratuon
thanks @scottf for this. |
got these warning when I tried to build Maven locally, mostly due to missing Javadoc comments, @scottf .
|
|
It's impractical to make configuration object serializable because it would make any changes like an addition of a field NOT backward compatible because the serialVersionUID would change, versioning the entire class, requiring a semver major version.
So instead,