OpenAPI: Default blocking value in indexing_settings is true

This commit is contained in:
2026-04-17 13:33:12 +02:00
parent 588c8d3ed1
commit e67db3c4ff
6 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ Indexing_settings::Indexing_settings()
m_Rotation_indexing = false;
m_Rotation_indexing_min_angular_range_deg = 20.0f;
m_Rotation_indexing_angular_stride_deg = 0.5f;
m_Blocking = false;
m_Blocking = true;
}
+1 -1
View File
@@ -130,7 +130,7 @@ public:
float getRotationIndexingAngularStrideDeg() const;
void setRotationIndexingAngularStrideDeg(float const value);
/// <summary>
/// Indexing in Jungfraujoch goes with a dedicated thread pool. If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped. If set to true, the thread pool will block until a thread is available.
/// Indexing in Jungfraujoch goes with a dedicated thread pool. If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped. This option is recommended for real-time processing at high frame rates. If set to true, the thread pool will block until a thread is available.
/// </summary>
bool isBlocking() const;
void setBlocking(bool const value);
+2 -2
View File
@@ -1920,10 +1920,10 @@ components:
minimum: 0
blocking:
type: boolean
default: false
default: true
description: |
Indexing in Jungfraujoch goes with a dedicated thread pool.
If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped.
If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped. This option is recommended for real-time processing at high frame rates.
If set to true, the thread pool will block until a thread is available.
instrument_metadata:
type: object
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**rotation_indexing** | **bool** | | [default to False]
**rotation_indexing_min_angular_range_deg** | **float** | | [default to 20.0]
**rotation_indexing_angular_stride_deg** | **float** | | [default to 0.5]
**blocking** | **bool** | Indexing in Jungfraujoch goes with a dedicated thread pool. If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped. If set to true, the thread pool will block until a thread is available. | [default to False]
**blocking** | **bool** | Indexing in Jungfraujoch goes with a dedicated thread pool. If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped. This option is recommended for real-time processing at high frame rates. If set to true, the thread pool will block until a thread is available. | [default to True]
## Example
@@ -57,7 +57,7 @@ export type indexing_settings = {
rotation_indexing_angular_stride_deg: number;
/**
* Indexing in Jungfraujoch goes with a dedicated thread pool.
* If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped.
* If set to false, the thread pool is non-blocking, i.e. if there are no threads available, image indexing will be skipped. This option is recommended for real-time processing at high frame rates.
* If set to true, the thread pool will block until a thread is available.
*
*/