List of usage examples for javax.resource.spi ManagedConnection destroy
public void destroy() throws ResourceException;
From source file:org.bytesoft.bytejta.supports.serialize.XAResourceDeserializerImpl.java
protected void closeQuietly(ManagedConnection closeable) { if (closeable != null) { try {/*from w w w .j a v a2s . c o m*/ closeable.destroy(); } catch (Exception ex) { logger.debug(ex.getMessage()); } } }