Skip to content

Commit

Permalink
Change Maximum timeout value
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis-Averin committed Nov 26, 2023
1 parent bd29795 commit 1f71405
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Name | Type | Description | Notes
**rectWidth** | **number**| Set Width of area for recognition. | [optional]
**rectHeight** | **number**| Set Height of area for recognition. | [optional]
**stripFNC** | **boolean**| Value indicating whether FNC symbol strip must be done. | [optional]
**timeout** | **number**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
**timeout** | **number**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
**medianSmoothingWindowSize** | **number**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
**allowMedianSmoothing** | **boolean**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
**allowComplexBackground** | **boolean**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
Expand Down Expand Up @@ -135,7 +135,7 @@ Name | Type | Description | Notes
**rectWidth** | **number**| Set Width of area for recognition. | [optional]
**rectHeight** | **number**| Set Height of area for recognition. | [optional]
**stripFNC** | **boolean**| Value indicating whether FNC symbol strip must be done. | [optional]
**timeout** | **number**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
**timeout** | **number**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
**medianSmoothingWindowSize** | **number**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
**allowMedianSmoothing** | **boolean**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
**allowComplexBackground** | **boolean**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -2102,7 +2102,7 @@ interface ReaderParams {
stripFNC?: boolean;

/**
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
*/
timeout?: number;

Expand Down
6 changes: 3 additions & 3 deletions src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2872,7 +2872,7 @@ export class ReaderParams {
*/
'stripFNC'?: boolean;
/**
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
*/
'timeout'?: number;
/**
Expand Down Expand Up @@ -3919,7 +3919,7 @@ Default value of Preset is NormalQuality.
/**
* Timeout of recognition process in milliseconds.
Default value is 15_000 (15 seconds).
Maximum value is 60_000 (1 minute).
Maximum value is 30_000 (1/2 minute).
In case of a timeout RequestTimeout (408) status will be returned.
Try reducing the image size to avoid timeout.
*/
Expand Down Expand Up @@ -4201,7 +4201,7 @@ Default value of Preset is NormalQuality.
/**
* Timeout of recognition process in milliseconds.
Default value is 15_000 (15 seconds).
Maximum value is 60_000 (1 minute).
Maximum value is 30_000 (1/2 minute).
In case of a timeout RequestTimeout (408) status will be returned.
Try reducing the image size to avoid timeout.
*/
Expand Down

0 comments on commit 1f71405

Please sign in to comment.