Controls how index updates are applied when you write data to a table.
Enumerated values
IUM_ASYNC_INDEX: Asynchronous update mode. Index updates are applied asynchronously and do not block the current thread or process.IUM_SYNC_INDEX: Synchronous update mode. Index updates are applied synchronously and block the current thread or process until the update completes.
enum IndexUpdateMode {
IUM_ASYNC_INDEX = 0;
IUM_SYNC_INDEX = 1;
}