Is there a way to get rid of an ExampleTable?
Pascal_Welke
MemberPosts:10Contributor II
Hey there,
I am writing an operator for preprocessing which gets an ExampleSet as input and creates a new MemoryExampleTable wich will deliver data for output.
Is there a way to delete the no longer needed ExampleTable which provided the input?
Greetings.
Pascal
I am writing an operator for preprocessing which gets an ExampleSet as input and creates a new MemoryExampleTable wich will deliver data for output.
Is there a way to delete the no longer needed ExampleTable which provided the input?
Greetings.
Pascal
Tagged:
0
Answers
the memory example table will be deleted by the garbage collection as soon as no objects holds a reference on it. So if you don't remember it in your operator or resulting IOObjects, it will be deleted automatically.
Greetings,
Sebastian
问候
Pascal