Is there any sample on how ITransactedSession work in .Net with Confirm Delivery (Acknowledged) ? Is CreateFlow require when work on Producer and how its Acknowledgement work within a commit?
Hi @jessie_lai87 ,
I do not see a sample, but per the send
method in the docs it sounds to me like you need to set the HasPublisher
property which creates the flow for you. Then I do believe you would need to commit. ( @Ragnar can you confirm what I’m saying is true ?)
Hope that helps!
ITransactedSession Methods
@marc.dipasquale you are correct. The HasPublisher property defaults to true. All sent message from transacted session send
are confirmed on commit. CreateFlow is only for receiving flows.