Java gRPC client - How to close a DamlLedgerClient properly?

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.

1 Like

Noted with thanks !