Package ch.njol.util
Interface Closeable
- All Known Implementing Classes:
DatabaseStorage
,FlatFileStorage
,LoggerFilter
,Task
,VariablesStorage
public interface Closeable
Like
Closeable
, but not used for resources, thus it neither throws checked exceptions nor causes resource leak warnings.-
Method Summary
-
Method Details
-
close
void close()Closes this object. This method may be called multiple times and may or may not have an effect on subsequent calls (e.g. a task might be stopped, but resumed later and stopped again).
-