Client
Tracker.afterFlush(callback)
import { Tracker } from 'meteor/tracker'
Source Schedules a function to be called during the next flush, or later in the current flush if one is in progress, after all invalidated computations have been rerun. The function will be run once and not on subsequent flushes unless afterFlush
is called again.
Arguments
- callback Function
-
A function to call at flush time.
Please login to continue.