OpenAPI: Default blocking value in indexing_settings is true
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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
@@ -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.
|
||||
*
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user