-
-
Notifications
You must be signed in to change notification settings - Fork 16k
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
support UDT #844
Comments
@carrot-garden what exactly you extend ? Can you point me to the right place to see how you do it as I would like to see if it is a good idea to make them public :) Also I wonder if you would be interested to issue a pull-request and have udt support directly in Netty ;) |
Norman: great, I will re-orient my efforts towards integrating udt in netty basically I need to inject custom selector and hence selector provider into netty; what is the right way to communicate custom selector provider to the NioEventLoop? thanks Andrei. |
BTW, where the integration should go? into transport |
Why not just pass it to the NioEventLoopGroup ? If it does not need to have any third-party dependencies it is ok to just have it in transport |
good, I will take a look. |
I made you a contributor to our netty fork: in case you feel like creating netty-compiant skeletons :-) please do:
BTW, will this be correct naming? |
Yes the naming sounds good... I think if you would put them in the same package we would not need to adjust the visibility. What classes would you like to extend ? |
i'd like this,i just notified that we need to change the bytebuffer to channel buffer~~and the interaction with the channel handler~ |
Norman: can you please take a look if I am on the right track? https://github.com/barchart/barchart-udt thanks, Andrei. |
@carrot-garden looks right.. |
please review #867 |
@carrot-garden ,for my current work,i use the bytebuffer not the channelbuffer but may make the usage of the channebuffer as an datasink and implement some frame decoder encoder and so on so i can use it with the origin bytebuffer,i see your hard work,as we both know,use netty with the barchart-udt is so nice and clean~! i wanna help,but sorry for that i don't know how to use the this github.... thanks for your hard work,really thanks. udt is more good than the orgin UDP and is more good and nice than TCP when the both peer is far away ~~ |
@hepin1989 : 讀萬卷書不如行萬里路 - how about some pull requests? :-) -------- Original Message --------
|
@carrot-garden .wowo~~!you know chinese,thanks |
#867 was merged in.. Thanks! |
hello there,
I am integrating udt with netty:
https://github.com/barchart/barchart-udt
I would like to reuse/extend classes from io.netty.channel.socket.nio
currently I do this by having io.netty.channel.socket.nio package in my project
due to classes being package-private;
this is no good for osgi, since same package
would have to be imported from multiple bundles;
please make io.netty.channel.socket.nio classes public?
thank you!
The text was updated successfully, but these errors were encountered: