Skip to main content

Capture Data

To begin capturing data start by adding the Fullstory framework.

Stop Data Capture

Stop capturing a session

Once shutdown is invoked, Fullstory will no longer receive data from the user's device. shutdown is idempotent, meaning that it will quietly do nothing if you call it multiple times after the first invocation. Call restart to begin capturing again. shutdown must be called every time when you wish to shutdown the capturing.

When running Fullstory, capturing begins automatically when the app launches. You can control this behavior by setting the recordOnStart flag, see getting started guide below for the usage of that flag.

Additional Information

[FS shutdown]

Example Invocation

[FS shutdown];

Restart Data Capture

Restart session data capture after it has been shutdown

FS.restart() is used to begin data capture again after FS.shutdown() has been called. It's idempotent, meaning that it just quietly does nothing if you call it multiple times after the first invocation.

[FS restart]

Example Invocation

[FS restart];