-
Notifications
You must be signed in to change notification settings - Fork 184
Custom Operator #2
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
Comments
Can you give me an example of what you are looking to do here ? |
Yeah, this is a really hard one, and probably not suitable to pick up. Effectively, we use that really complicated |
No worries, I've found a bunch of other stuff to work on. The way we loop through oid's for instance |
Previously, the BooleanCodec only decoded Java-standard representations of boolean values in data from the server. However, PostgreSQL has other representations that were not decoded. This change adds support for more, and Hopefully all, boolean representations. [#2]
Closing this issue as we have a custom subscriber and |
Having some experience doing this now, the client portion of the implementation (i.e. the portion that transforms Reactive Streams into wire-protocol) should be implemented as a custom operator. This would allow the use of
onSubscribe()
to establish the connection,cancel()
to terminate it, andrequest()
to call for more data from a portal. This is much easier to troubleshoot and more intuitive to maintain than the current nesting dolls of reactive flows.The text was updated successfully, but these errors were encountered: