Class f.l.l.DeferredStoredObject(object):

Part of fixture.loadable.loadable View In Hierarchy

A stored representation of a row in a DatSet, deferred.

The actual stored object can only be resolved by the StoredMediumAdapter itself

Imagine...:

>>> from fixture import DataSet
>>> class PersonData(DataSet):
...     class adam:
...         father=None
...     class eve:
...         father=None
...     class jenny:
...         pass
...     jenny.father = adam
...

This would be a way to indicate that jenny's father is adam. This class will encapsulate that reference so it can be resolved as close to when it was created as possible.

Method __init__ Undocumented
Method get_stored_object_from_loader Undocumented
def __init__(self, dataset, key):
Undocumented
def get_stored_object_from_loader(self, loader):
Undocumented
API Documentation for fixture, generated by pydoctor.