dispatch:time-tracker

v1.0.0Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Time Tracker Build Status

Invalidate a reactive function based on time.

##Usage

meteor add dispatch:time-tracker

// This will re-run every second.
Tracker.autorun(function () {
  TimeTracker.changeIn(1000);
});

or

// This will re-run at some date (once).
Tracker.autorun(function () {
  TimeTracker.changeAt(someDate);
});

Checkout the example.