class PendingCollection(object):
A writable placeholder for an unloaded collection.
Stores items appended to and removed from a collection that has not yet been loaded. When the collection is loaded, the changes stored in PendingCollection are applied to it to produce the final result.
Method | __init__ |
Undocumented |
Method | append |
Undocumented |
Method | remove |
Undocumented |
Instance Variable | added​_items |
Undocumented |
Instance Variable | deleted​_items |
Undocumented |