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
It is useful to be able to ask MySQLNIO to initiate a connection using a preexisting NIO channel. The most obvious use case is SSH tunneling. This should mostly be a matter of simply exposing the appropriate API as public.
The text was updated successfully, but these errors were encountered:
If using Citadel/NIOSSH, what you get is a NIO.Channel that the library needs to add its handlers to (including optionally TLS) and then initialize a connection with that Channel. The main complication would be for drivers supporting clustering, or connection pools in general. As those would need to allow the user to create a new channel manually. In general, that change (custom Channels) is great if you want to support Network.framework as well.
It is useful to be able to ask MySQLNIO to initiate a connection using a preexisting NIO channel. The most obvious use case is SSH tunneling. This should mostly be a matter of simply exposing the appropriate API as
public
.The text was updated successfully, but these errors were encountered: