Stormify Aware
interface StormifyAware
Interface for objects that can be bound to a Stormify instance via attachTo.
Two kinds of library objects implement this:
StormifyEntity (and therefore AutoTable) — database entities that need to know which Stormify loaded them so they can lazy-load on access.
PagedList— column-based paged views that defer their Stormify until first use.
Call Stormify.attach to bind an instance. The target then uses it for subsequent database operations without receiving it as an explicit parameter.
User code should not implement this interface directly — extend StormifyEntity (for entities) or use the PagedList class (for paged views) instead.