I have an integration test that needs to coordinate two DatagramSockets, each running in their own thread. One socket waits to read data with a blocking call to receive(). The other socket needs to call send(), but this must happen after receive() has blocked, otherwise the data will be lost.
The code is a little like this:
Receiver
byte[] buf = new byte[1024];
new DatagramSocket(7654).receive(new DatagramPacket(buf, buf.length));
Sender
new DatagramSocket(7654).send(
new DatagramPacket("hello".getBytes(Charset.forName("UTF-8")), 5));
I'm loath to put a Thread.sleep() before the send() call, although this would probably be sufficient to allow the receiver to block. Is there an elegant way to do this?
