View Source Squeeze.Tasks.CreateTrackpointSections (OpenPace v0.0.1)

Task module for batch processing TrackpointSets to create trackpoint sections. This module is designed to process existing TrackpointSets and generate corresponding trackpoint sections in batches.

Link to this section Summary

Functions

Starts the batch processing of all TrackpointSets.

Link to this section Functions

Starts the batch processing of all TrackpointSets.

options

Options

  • :batch_size - The number of records to process in each batch. Defaults to 100

Returns {:ok} when all records have been processed.

examples

Examples

iex> CreateTrackpointSections.run()
{:ok}

iex> CreateTrackpointSections.run(batch_size: 50)
{:ok}