-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Add new methods in Deserializers
, Serializers
for new IterationType
?
#3954
Comments
My specific problem is here - https://github.com/FasterXML/jackson-module-scala/blob/b70b62eb1b04b345f6080391fbd3947652dd1fbe/src/main/scala/com/fasterxml/jackson/module/scala/ser/IteratorSerializerModule.scala#L67-L92 With |
@pjfanning Good point, it'd be much more convenient to get (de)serializer passed in. Yes, it is definitely possible to fetch (de)serializer(s) with given A good example of how to do this might be and although alternatively methods from |
(see #3950 for background)
With 2.16 there's new
IterationType
which applies to types likeIterator
andStream
. Callback interfacesDeserializers
andSerializers
should probably be extended to have separate callback methods, with default implementation that simply delegates to:Deserializers.findBeanDeserializer()
Serializers.findSerializer()
The text was updated successfully, but these errors were encountered: