I need to get the query string in connection url when accepting a connection so that I create a different instance depending on the query string.
But I couldn't find a way to get it in AcceptConnection(). I can get the url in Initialize() of delegate, but it is called only one time.
For example, I'd like to create different instances for
ConnectToApplication("https://xxx/yyy?q=1")
ConnectToApplication("https://xxx/yyy?q=2")
Is this possible (in Java and Go)?
Thanks,