Hello daml forum,
I am submitting commands on contracts in the daml ledger, as a certain party.
For this purpose, I use CommandClient, that proposes 4 return choices : Empty, Transaction, TransactionId (String) and TransactionTree.
I tried them all and couldn’t find what I was looking for. What I want is the return value(s) of the command, as seen in the .daml code, example:
template SomeTemplate
with
someField: Text
(...)
where
controller consumer can
DoThis : **value(s) returned**
How can I do that from java reactive bindings?
Thank you in advance