You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can register an interest in an I/O request without initiating it:
// register for a valueio.get({url: '/url',wait: true}).then(function(value){console.log('Delayed value:',value);});// ...// now we request itio.get('/url').then(function(value){console.log('Got value:',value);});// eventually it will print two lines:// Delayed value: 42// Got value: 42