-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[π Feature]: Convenience methods for BiDi #13991
Comments
@pujagani I'm guessing we don't have a good reason for not adding it to java, yet? |
Thank you for bringing this up. Actually we can add it. |
"options.enableBiDi(true)" - @titusfortner Should the user need to pass in true? Isn't |
@pujagani I thought the other methods in Java Options that are boolean require passing in true/false. |
That is a fair point. Though the naming, in that case, is like |
If setXX(boolean) is the pattern, then we should follow that, though I agree it seems a bit much. @diemol any opinions on our conventions here? |
I am not sure. If we want to set a property or a value, I like the This is to be said, I saw |
Thank you folks. I think I will go with |
Present in python a51ddee |
This issue has been automatically locked since there has not been any recent activity since it was closed. Please open a new issue for related bugs. |
Feature and motivation
Java & Python are missing convenience methods for enabling BiDi.
Right now we have....
.NET β options.UseWebSocketUrl = true
Ruby β options.web_socket_url = true
Python β options.enable_bidi = True
JS β enableBidi()
Java - enableBidi()
Should we update everything to use
enableBiDi()
name?Usage example
The text was updated successfully, but these errors were encountered: