- From: Mounir Lamouri <mounir@lamouri.fr>
- Date: Mon, 08 Sep 2014 21:38:42 +1000
- To: Tobie Langel <tobie.langel@gmail.com>
- Cc: Rick Waldron <waldron.rick@gmail.com>, Tim Volodine <timvolodine@google.com>, Marcos Caceres <marcos@marcosc.com>, Jonas Sicking <jonas@sicking.cc>, public-device-apis@w3.org, Anssi Kostiainen <anssi.kostiainen@intel.com>, "public-script-coord" <public-script-coord@w3.org>, Doug Turner <dougt@mozilla.com>, Domenic Denicola <domenic@domenicdenicola.com>, Anne van Kesteren <annevk@annevk.nl>
On Mon, 8 Sep 2014, at 21:24, Tobie Langel wrote:
> Given the requestAnimationFrame use cases exposed by Rick, it seems that
> obtaining the Sensor instance immediately is more developer friendly than
> getting it through a resolved promise. Especially if numerous sensors
> need
> to interact.
```
sensors = null;
Promise.all(getSensor1(), getSensor2(), getSensor3()).then(function (s)
{
sensors = s;
});
requestAnimationFrame(function(frame) {
requestAnimationFrame(frame);
if (!sensors)
return;
[...]
});
```
-- Mounir
Received on Monday, 8 September 2014 11:39:07 UTC