hoijui / JavaOSC

OSC content format/"protocol" library for JVM languages
http://www.illposed.com/software/javaosc.html
BSD 3-Clause "New" or "Revised" License
156 stars 43 forks source link

Fix parallel read/write for UDPTransport #73

Open Jurrie opened 1 month ago

Jurrie commented 1 month ago

Because a shared buffer was used, it was not possible to do read in one thread, and write in another at the same time. See the (complex...) unit test for proof of this. The issue is fixed by using a dedicated buffer for reading, and a dedicated buffer for writing.