Hi team,
What is the good approach to close properly a DamlLedgerClient object in Java application ?
Best regards,
Jean-Paul
Hi team,
What is the good approach to close properly a DamlLedgerClient object in Java application ?
Best regards,
Jean-Paul
Using the .close() method should be the right way to do it, possibly in a finally block. Unfortunately DamlLedgerClient doesn’t implement neither Closeable nor Autocloseable but if you prefer to use Java’s try-with-resources statement you can add a wrapper around it.
Noted with thanks !