Is it possible to serialize a method containing yield statements (or a class that contains such a method) such that when you rehydrate the class, the internal state of the generated iterator is retained?

link|improve this question

71% accept rate
1  
You want to start running the method in one place, and continue running it in a different place? – arootbeer Jul 20 '10 at 20:49
1  
@arootbeer: It could be a "save progress" thing too, it doesn't have to be sent over the wire necessarily. – Scott Stafford Jul 20 '10 at 20:51
@Scott Stafford: That makes more sense. – arootbeer Jul 20 '10 at 20:52
feedback

4 Answers

up vote 5 down vote accepted

Yes, you can do this. With caveats.

An example of serializing a method with a yield, deserializing and continuing can be found here: http://www.agilekiwi.com/dotnet/CountingDemo.cs

In general, trying to serialize without doing some extra work will fail. This is bcause the compiler generated classes are not marked with the Serializable attribute. However, you can work around this.

I would note the reason that they aren't marked with serializable is because they are an implementation detail and subject to breaking changes in future versions, so you may not be able to deserialize it in a newer version.

Related to a question I asked on how to serialize anonymous delegates, which should work for this case as well.

link|improve this answer
+1 very interesting! – Abel Jul 23 '10 at 9:55
feedback

Internally, yield statement is transformed to state machine implemented as class that implements IEnumerator interface. It allows to iterate throught resultset using multiple foreach statements at the same time. That class is not visible to your code, it is not marked as serializable.

So, answer is no, it is not possible. But, you can implement desired enumerator by itself, but it requires more labor than yield.

link|improve this answer
3  
I would say this is not entirely correct. It is possible, but perhaps strongly not recommended. – Joseph Kingry Jul 20 '10 at 21:15
feedback

Just make sure that just before you call yield, that you save state (i.e., the iterators position) in a serializable field (the location field, or whatever you call it). Then, when the class is deserialized, simply continue where you left off, using the location field.

But, when will this be useful? Do you plan to serialize objects in the middle of a foreach loop? Maybe you make it a lot easier if you give you class a SetIteratorPosition() method, which defaults to the current position. It's clearer than adding side effects to existing well defined behavior (yield) and everyone'll understand that IteratorPosition can be saved.

Note: methods cannot be serialized. You serialize data, i.e., properties and fields.

link|improve this answer
feedback

Yes. Any method that returns an IEnumerable can have it's own code for yield return whatever you tell it to. If you serialize the internal state of your object as to what it was iterating and how far it got, then you can reload that state at some future time, and continue the enumeration right where you left off.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.