Hi, I did some subtle reasoning about thread safety and visibility while implementing a TCP socket connection pool using apache.commons.pool library., and I would like to share it with you to check if my thoughts are right. The objects I am putting into the pool are not plain java Sockets, but wrapper objects around a Socket I called "EVLConnection". Before returning ...