-
Notifications
You must be signed in to change notification settings - Fork 72
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
Should serdes functionality be exported to JS? #50
Comments
@mostafa I like that idea. So, for example, instead of the
and
We may not need the Is this what you were thinking? If so, I could take a shot at it. Let me know. |
@enamrik |
Oh I see. So you would pass keyConfig and valueConfig JSON objects and those configuration objects would describe the serde type and serde input configuration. Sounds good. |
Instead of implicitly calling the serdes functions via
produce
andconsume
, we can explicitly call them from JS and have the user control over them. This way, we can have a more flexible serializer/deserializer system, and we don't need to worry about API changes and backward compatibility. Also, we won't have to decide when to use the serializer/deserializer based on the schema and given parameters.The text was updated successfully, but these errors were encountered: