Kotlin provides the use
function for Closeable
objects, but it seems they forgot to consider AutoCloseable
(e.g. DB prepared statements) for the try-with-resources full Java equivalent.
I've implemented the next "home-made" solution:
inline fun <T:AutoCloseable,R> trywr(closeable: T, block: (T) -> R): R {
try {
return block(closeable);
} finally {
closeable.close()
}
}
Then you can use it the next way:
fun countEvents(sc: EventSearchCriteria?): Long {
return trywr(connection.prepareStatement("SELECT COUNT(*) FROM event")) {
var rs = it.executeQuery()
rs.next()
rs.getLong(1)
}
}
I'm new to Kotlin and I would like to know if I'm missing something important in my own solution that could give me problems/leakages in a production environment.
Since Kotlin 1.1,
.use
has anAutoCloseable
implementation.Copied from source
Your implementation will work fine but it's different from a standard try-with-resources implementation. If you want it to work like in Java you should do something like that:
UPDATE:
As mfulton26 pointed out in his comment
kotlin.Throwable
doesn't containaddSuppressed(Throwable)
method so we have to castkotlin.Throwable
tojava.lang.Throwable
to make the code work.I think what you want is
use()
as defined onClosable
.