In an activity function we return something by doing
context.done(null, object);
to the durable function
where object
is my target object to sent.
but when i make my activity function async, i can not use context.done
without context.done
how can i send my desired object from activity function?