Does Netty provide reliable-ordered UDP messaging? -


does know if netty provides reliable messaging (acks) , sequence ordering upd messages? looking java messaging library allow me write game server provide functionality don't have write it.

ok - found answer. does! provides udt via these packages:

io.netty.channel.udt io.netty.channel.udt.nio 

which include these classes:

udtchannel udtchannelconfig udtchanneloption udtmessage udtserverchannel udtserverchannelconfig 

and these ones:

nioudtacceptorchannel nioudtbyteacceptorchannel nioudtbyteconnectorchannel nioudtbyterendezvouschannel nioudtmessageacceptorchannel nioudtmessageconnectorchannel nioudtmessagerendezvouschannel nioudtprovider 

and provides plain udp via these classes:

datagramchannel datagramchannelconfig datagrampacket 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -