## Clear To stop DataStore sync process and to clear local data from DataStore, use the `clear` method: import ios0 from "/src/fragments/lib/datastore/ios/other-methods/10_clear.mdx"; import android1 from "/src/fragments/lib/datastore/android/other-methods/10_clear.mdx"; import flutter1 from "/src/fragments/lib/datastore/flutter/other-methods/10_clear.mdx"; import datastoreClearCallout from '/src/fragments/lib/datastore/native_common/callout/datastore-clear-with-auth.mdx'; ## Start import ios2 from "/src/fragments/lib/datastore/ios/other-methods/15_start.mdx"; import android3 from "/src/fragments/lib/datastore/android/other-methods/15_start.mdx"; import flutter2 from "/src/fragments/lib/datastore/flutter/other-methods/15_start.mdx"; import ios4 from "/src/fragments/lib/datastore/ios/other-methods/20_start.mdx"; import android5 from "/src/fragments/lib/datastore/android/other-methods/20_start.mdx"; import flutter3 from "/src/fragments/lib/datastore/flutter/other-methods/20_start.mdx"; ## Stop To stop the DataStore sync process, you can use `DataStore.stop()`. This will close the real time subscription connection when your app is no longer interested in updates. You will typically call `DataStore.stop()` just before your application is closed. You can also force your [DataStore sync expressions](/lib/datastore/sync) to be re-evaluated at runtime by calling `stop()` followed by `start()`. import ios6 from "/src/fragments/lib/datastore/ios/other-methods/30_stop.mdx"; import android7 from "/src/fragments/lib/datastore/android/other-methods/30_stop.mdx"; import flutter4 from "/src/fragments/lib/datastore/flutter/other-methods/30_stop.mdx";