Truxton reindex media

From truxwiki.com
Revision as of 16:47, 20 May 2021 by Sam (talk | contribs) (Created page with "This will requeue all files in the given media to the content indexer. =Syntax= <source lang="C"> void truxton_reindex_media( uint64_t trutxon_handle, char const * media_id )...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This will requeue all files in the given media to the content indexer.

Syntax

void truxton_reindex_media( uint64_t trutxon_handle, char const * media_id );

Parameters

truxton_handle

The handle created by the truxton_create call.

media_id

The identifier of the media to reindex. This should be a value from the [ID] column of the [Media] table.

Sample

void reindex_training_media( uint64_t truxton )
{
   truxton_reindex_media( truxton, "1997aa6c-bda8-d9ec-341b-0d8cb64104bf" );
}