Package com.atlassian.confluence.util
Interface Cleanup
- 
- All Superinterfaces:
 AutoCloseable
public interface Cleanup extends AutoCloseable
Provides an alternative to AutoCloseable that removes the throws clause on the close() method. This provides convenient use of the try-with-resources pattern to finish work or clean up state after an operation:try (Cleanup cleanup = doOperation()) { }
- Since:
 - 5.10
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Closes this resource, finishing work or cleaning up state as required. 
 - 
 
- 
- 
Method Detail
- 
close
void close()
Closes this resource, finishing work or cleaning up state as required.- Specified by:
 closein interfaceAutoCloseable
 
 - 
 
 -