Closed
Description
TransportAddress
is a small immutable wrapper around an InetSocketAddress
so that they can be sent over the wire. We don't make very many InetSocketAddress
objects but we create new wrappers around them on every inbound message and on outbound exceptions:
We should really be re-using the TransportAddress
wrapper in these cases.