I have a couple questions about socket programming in Java.
I have a process that needs to send one message across multiple socket connections. Right now I have this as follows
Socket[] connections; //Already initialized with all connections for i=0 to connections.length - 1 Send Message across connection[i]; // a new PrintWriter linked to the output streamIs that as atomic as this broadcast could be? Or is there potential in a concurrent environment they may not all be sent at the nearly same instant?
In a concurrent environment are the output streams to socket connections (set up as a PrintWriter) already mutually exclusive? Say, two threads want to simultaneously write to the PrintWriter. Will any of the output to the stream be messed up without explicit mutual exclusion on the PrintWriter?