--- title: Tracker description: Documentation of Tracker, Meteor's reactive system. --- Meteor has a simple dependency tracking system which allows it to automatically rerun templates and other computations whenever [`Session`](#session) variables, database queries, and other data sources change. Unlike most other systems, you don't have to manually declare these dependencies — it "just works". The mechanism is simple and efficient. When you call a function that supports reactive updates (such as a database query), it automatically saves the current Computation object, if any (representing, for example, the current template being rendered). Later, when the data changes, the function can "invalidate" the Computation, causing it to rerun (rerendering the template). Applications will find [`Tracker.autorun`](#tracker_autorun) useful, while more advanced facilities such as `Tracker.Dependency` and `onInvalidate` callbacks are intended primarily for package authors implementing new reactive data sources. {% apibox "Tracker.autorun" %} `Tracker.autorun` allows you to run a function that depends on reactive data sources, in such a way that if there are changes to the data later, the function will be rerun. For example, you can monitor a cursor (which is a reactive data source) and aggregate it into a session variable: ```js Tracker.autorun(() => { const oldest = _.max(Monkeys.find().fetch(), (monkey) => { return monkey.age; }); if (oldest) { Session.set('oldest', oldest.name); } }); ``` Or you can wait for a session variable to have a certain value, and do something the first time it does, calling `stop` on the computation to prevent further rerunning: ```js Tracker.autorun((computation) => { if (!Session.equals('shouldAlert', true)) { return; } computation.stop(); alert('Oh no!'); }); ``` The function is invoked immediately, at which point it may alert and stop right away if `shouldAlert` is already true. If not, the function is run again when `shouldAlert` becomes true. A change to a data dependency does not cause an immediate rerun, but rather "invalidates" the computation, causing it to rerun the next time a flush occurs. A flush will occur automatically as soon as the system is idle if there are invalidated computations. You can also use [`Tracker.flush`](#tracker_flush) to cause an immediate flush of all pending reruns. If you nest calls to `Tracker.autorun`, then when the outer call stops or reruns, the inner call will stop automatically. Subscriptions and observers are also automatically stopped when used as part of a computation that is rerun, allowing new ones to be established. See [`Meteor.subscribe`](#meteor_subscribe) for more information about subscriptions and reactivity. If the initial run of an autorun throws an exception, the computation is automatically stopped and won't be rerun. ### Tracker.autorun and async callbacks `Tracker.autorun` can accept an `async` callback function. To preserve reactivity for the reactive variables inside the async callback function, you must use a `Tracker.withComputation` call as described below: {% apibox "Tracker.withComputation" %} ```javascript Tracker.autorun(async function example1(computation) { // Code before the first await will stay reactive. reactiveVar1.get(); // This will trigger a rerun. let links = await LinksCollection.find({}).fetchAsync(); // First async call will stay reactive. // Code after the first await looses Tracker.currentComputation: no reactivity. reactiveVar2.get(); // This won't trigger a rerun. // You can bring back reactivity with the Tracker.withCompuation wrapper: let users = await Tracker.withComputation(computation, () => Meteor.users.find({}).fetchAsync()); // Code below will again not be reactive, so you will need another Tracker.withComputation. const value = Tracker.withComputation(computation, () => reactiveVar3.get()); // This will trigger a rerun. }); ``` As a rule of thumb, you are okay with wrapping all reactive statements inside a `Tracker.withComputation` to preserve current computation. But it comes at a performance cost - it should be used only where needed. Reason behind is, that an await implicitly *"moves"* the code below in a Promise resolved function. When this function runs (after it has been fetched from the micro task queue), `Tracker.withComputation` preserves the reference to the computation of the `Tracker.autorun`. The `react-meteor-data` package uses `Tracker.withComputation` to make the `useTracker` accept async callbacks. More can be seen [here](https://github.com/meteor/react-packages/tree/master/packages/react-meteor-data#maintaining-the-reactive-context) ### Using async callbacks in versions of Meteor prior to 2.10 `Tracker.autorun` can accept an `async` callback function. However, the async call back function will only be dependent on reactive functions called prior to any called functions that return a promise. Example 1 - autorun `example1()` **is not** dependent on reactive changes to the `Meteor.users` collection. Because it is dependent on nothing reactive it will run only once: ```javascript Tracker.autorun(async function example1() { let asyncData = await asyncDataFunction(); let users = Meteor.users.find({}).fetch(); }); ``` However, simply changing the order so there are no `async` calls prior to the reactive call to `Meteor.users.find`, will make the async autorun `example2()` dependent on reactive changes to the `Meteor.users` collection. Example 2 - autorun `example2()` **is** dependent on reactive changes to the Meteor.users collection. Changes to the `Meteor.users` collection will cause a rerun of `example2()`: ```javascript Tracker.autorun(async function example2() { let users = Meteor.users.find({}).fetch(); let asyncData = await asyncDataFunction(); }); ``` {% apibox "Tracker.flush" %} Normally, when you make changes (like writing to the database), their impact (like updating the DOM) is delayed until the system is idle. This keeps things predictable — you can know that the DOM won't go changing out from under your code as it runs. It's also one of the things that makes Meteor fast. `Tracker.flush` forces all of the pending reactive updates to complete. For example, if an event handler changes a Session variable that will cause part of the user interface to rerender, the handler can call `flush` to perform the rerender immediately and then access the resulting DOM. An automatic flush occurs whenever the system is idle which performs exactly the same work as `Tracker.flush`. The flushing process consists of rerunning any invalidated computations. If additional invalidations happen while flushing, they are processed as part of the same flush until there is no more work to be done. Callbacks registered with [`Tracker.afterFlush`](#tracker_afterflush) are called after processing outstanding invalidations. It is illegal to call `flush` from inside a `flush` or from a running computation. The [Tracker manual](https://github.com/meteor/docs/blob/master/long-form/tracker-manual.md#the-flush-cycle) describes the motivation for the flush cycle and the guarantees made by `Tracker.flush` and `Tracker.afterFlush`. {% apibox "Tracker.nonreactive" %} Calls `func` with `Tracker.currentComputation` temporarily set to `null` and returns `func`'s own return value. If `func` accesses reactive data sources, these data sources will never cause a rerun of the enclosing computation. {% apibox "Tracker.active" %} This value is useful for data source implementations to determine whether they are being accessed reactively or not. {% apibox "Tracker.inFlush" %} This value indicates, whether a flush is in progress or not. {% apibox "Tracker.currentComputation" %} It's very rare to need to access `currentComputation` directly. The current computation is used implicitly by [`Tracker.active`](#tracker_active) (which tests whether there is one), [`dependency.depend()`](#dependency_depend) (which registers that it depends on a dependency), and [`Tracker.onInvalidate`](#tracker_oninvalidate) (which registers a callback with it). {% apibox "Tracker.onInvalidate" %} See [*`computation`*`.onInvalidate`](#computation_oninvalidate) for more details. {% apibox "Tracker.afterFlush" %} Functions scheduled by multiple calls to `afterFlush` are guaranteed to run in the order that `afterFlush` was called. Functions are guaranteed to be called at a time when there are no invalidated computations that need rerunning. This means that if an `afterFlush` function invalidates a computation, that computation will be rerun before any other `afterFlush` functions are called.