Network: 1 Queued ConnectionManager per Protocol?

Hello All,

i have a question regarding the design of my network code.
each Client will have a TCP and an UDP connection to the Server.

Should i create 1 QueuedConnection Manager for TCP and one for UDP Connections? or can i use the same manager?

Same question apply for QueuedConnectionReader and QueuedConnectionWriter.

Should i keep them homogenous in term of protocol or is there no impact ?

Thanks for your inputs

i would think you need 2.

It doesn’t matter. Do it whichever way is most convenient for you. I typically create only one.

David