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
I was trying to write a custom body processor, and I realized that the interfaces (except for Map) in the collection package do not expose any setter (contrary to the internal collections package used in the built-in body processors).
It's not a huge issue as you can workaround this by creating your own interface that exposes a Set() method and use that instead, but it's definitely a bit awkward/counter-intuitive.
The text was updated successfully, but these errors were encountered:
Hello,
I was trying to write a custom body processor, and I realized that the interfaces (except for
Map
) in thecollection
package do not expose any setter (contrary to the internalcollections
package used in the built-in body processors).It's not a huge issue as you can workaround this by creating your own interface that exposes a
Set()
method and use that instead, but it's definitely a bit awkward/counter-intuitive.The text was updated successfully, but these errors were encountered: