Using Azure Durable Functions, and I have a quick question about how the replay logic would work. Let's say within my function, I use an object that implements IDisposable like this:
using (PersonalObject obj = new PersonalObject()){
// Some random code here
}
Sometimes Durable functions will replay. During the replay logic, will the personal object be created new every single time? Will the disposable object from the previous function get flushed before every replay?