On Wed, Jun 8, 2011 at 10:35 PM, Eliot Miranda <eliot.miranda@gmail.com> wrote:
Hi Martin and Mariano,

�� �a couple of questions. �What's the right way to exclude certain objects from the serialization? �Is there a way of excluding certain inst vars from certain objects?


Hi,

We are close to have this feature, but still is an open issue.

The idea is to to support this "statically" via:

ClassWithTransients >> fuelTransientInstanceVariables
�� ^ #(myTransientValue1 myTransientValue1)

or more dinamically via:

FLSerializationSettings newDefault
��� onClass: ClassWithTransients
��� declareTransients: #(myTransientValue1 myTransientValue1).

Do you have a better idea?

Cheers
Martin

best
Eliot