public void close() {
   if (closed == null) {
     try {
       closed = new Exception("Connection Closed Traceback");
       shutdownConnection();
       jcbcStorageClientConnection.releaseClient(this);
     } catch (Throwable t) {
       LOGGER.error("Failed to close connection ", t);
     }
   }
 }