I am reading some files using parallel tasks. During this operation if i cancel the task the file handles are not closed. the tasks are successfully canceled. Looks like i need to do something more to close the file handles during a cancel but not able to figure out what i need to do. I was assuming that the task cancellation will dispose all objects but thats not the case. Any help is much appreciated.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Cancelling a task won't dispose of anything. I don't really know how you cancel or start your The cleanup is totally up to you. The garbage collector will kill normal objects but you need to call You have several options for this, calling |
|||||
|