function onVNode()

in index.js [222:230]


    function onVNode(vnode, next) {
        async.waterfall([
            function _loadWithRetries(wNext) {
                _tryWithRetry("loadkeys", self.loadKeyRetryQueue,
                    self.store.loadKeys.bind(self.store, vnode), wNext);
            },
            onKeys.bind(null, vnode),
        ], next);
    }