Interface CriticalCloseable
- All Superinterfaces:
ArtemisCloseable,AutoCloseable
-
Method Summary
Modifier and TypeMethodDescriptionvoidbeforeClose(ArtemisCloseable otherCloseable) This will set something to be called right before closing.Methods inherited from interface org.apache.activemq.artemis.utils.ArtemisCloseable
close
-
Method Details
-
beforeClose
This will set something to be called right before closing.The use case that drove this call was a ReadWriteLock on the journal. Imagine that you need to call enterCritical, readWrite.lock() and then unlock and leaveCritical. By using this call I could reuse the same instance on the readWriteLock.
-