Skip to content

Commit 4a6677b

Browse files
update to internal commit 8775e825
1 parent b4ec02c commit 4a6677b

File tree

108 files changed

+10148
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+10148
-0
lines changed

_data/full_tree.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ tree_file_list:
55
- sidelist-programming/programming-cpp.html
66
- sidelist-programming/programming-dotnet-v2.4.2000.html
77
- sidelist-programming/programming-dotnet.html
8+
- sidelist-programming/programming-java.html
89
- sidelist-programming/programming-python-v2.4.2100.html
910
- sidelist-programming/programming-python-v2.5.2100.html
1011
- sidelist-programming/programming-python.html

_includes/sidelist-full-tree.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@
1010
<a href="{{ site.dcvb_python }}" class="otherLinkColour">Introduction</a>
1111
</li>
1212
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath lang="python" targetRelativePath="sidelist-programming/programming-python.html" -%}
13+
<li lang="java">
14+
<a href="{{ site.dcvb_java }}" class="otherLinkColour">Introduction</a>
15+
</li>
16+
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath lang="python" targetRelativePath="sidelist-programming/programming-java.html" -%}

_includes/sidelist-programming/programming-java.html

Lines changed: 286 additions & 0 deletions
Large diffs are not rendered by default.

programming/cplusplus/release-notes/cpp-3.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ needGenerateH3Content: false
88

99
# Release Notes for C++ Edition - 3.x
1010

11+
## 3.0.6000 (08/06/2025)
12+
13+
### Changed
14+
15+
- `StartCapturing` now stops immediately and returns a license-related error code if none of the tasks have a valid license, instead of proceeding and returning an empty result.
16+
17+
### Fixed
18+
19+
- Fixed a bug that caused a crash when using a specific type of license.
20+
- Fixed various minor bugs and improved overall stability.
21+
1122
## 3.0.4000 (07/15/2025)
1223

1324
### New

programming/cplusplus/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ noTitleIndex: true
99

1010
# Release Notes - Dynamsoft Capture Vision CPP
1111

12+
- [3.0.6000 (08/06/2025)](cpp-3.md#306000-08062025)
1213
- [3.0.4000 (07/15/2025)](cpp-3.md#304000-07152025)
1314
- [3.0.3000 (05/13/2025)](cpp-3.md#303000-05132025)
1415
- [3.0.1000 (03/04/2025)](cpp-3.md#301000-03042025)

programming/dotnet/release-notes/dotnet-3.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ needGenerateH3Content: false
88

99
# Release Notes for .NET Edition - 3.x
1010

11+
## 3.0.6000 (08/06/2025)
12+
13+
### Changed
14+
15+
- `StartCapturing` now stops immediately and returns a license-related error code if none of the tasks have a valid license, instead of proceeding and returning an empty result.
16+
17+
### Fixed
18+
19+
- Fixed a bug that caused a crash when using a specific type of license.
20+
- Fixed a crash that occurred when calling the default constructor of `FileImageTag` or `VideoFrameTag`.
21+
- Fixed various minor bugs and improved overall stability.
22+
1123
## 3.0.4000 (07/15/2025)
1224

1325
### New

programming/dotnet/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ noTitleIndex: true
99

1010
# Module Release Notes - Dynamsoft Capture Vision .NET Edition
1111

12+
- [3.0.6000 (08/06/2025)](dotnet-3.md#306000-08062025)
1213
- [3.0.4000 (07/15/2025)](dotnet-3.md#304000-07152025)
1314
- [3.0.3000 (05/13/2025)](dotnet-3.md#303000-05132025)
1415
- [2.4.2000 (10/10/2024)](dotnet-2.md#242000-10102024)
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
layout: default-layout
3+
title: BufferedItemsManager Class - Dynamsoft Capture Vision Router Module Java Edition API Reference
4+
description: Definition of BufferedItemsManager class in Dynamsoft Capture Vision Module Java Edition.
5+
keywords: buffered items manager, java
6+
needAutoGenerateSidebar: true
7+
needGenerateH3Content: true
8+
---
9+
10+
# BufferedItemsManager
11+
12+
Defines a manager for buffered items in the capture vision workflow.
13+
14+
## Definition
15+
16+
*Namespace:* com.dynamsoft.cvr
17+
18+
```java
19+
class BufferedItemsManager
20+
```
21+
22+
## Methods
23+
24+
| Method | Description |
25+
| --------------------------------------------------------- | -------------------------------------------------- |
26+
| [`setMaxBufferedItems`](#setmaxbuffereditems) | Sets the maximum number of buffered items. |
27+
| [`getMaxBufferedItems`](#getmaxbuffereditems) | Gets the maximum number of buffered items. |
28+
| [`getBufferedCharacterItemSet`](#getbufferedcharacteritemset) | Gets the buffered recognized character items. |
29+
30+
### setMaxBufferedItems
31+
32+
Sets the maximum number of buffered items.
33+
34+
```java
35+
public void setMaxBufferedItems(int count)
36+
```
37+
38+
**Parameters**
39+
40+
`count` The maximum number of buffered items.
41+
42+
### getMaxBufferedItems
43+
44+
Gets the maximum number of buffered items.
45+
46+
```java
47+
public int getMaxBufferedItems()
48+
```
49+
50+
**Return value**
51+
52+
Returns the maximum number of buffered items.
53+
54+
### getBufferedCharacterItemSet
55+
56+
Gets the buffered recognized character items.
57+
58+
```java
59+
public BufferedCharacterItemSet getBufferedCharacterItemSet()
60+
```
61+
62+
**Return value**
63+
64+
Returns the buffered recognized character items.
65+
66+
**See Also**
67+
68+
[BufferedCharacterItemSet]({{ site.dlr_java_api }}buffered-character-item-set.html)
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: default-layout
3+
title: CaptureStateListener Interface - Dynamsoft Capture Vision Module Java Edition API Reference
4+
description: Definition of CaptureStateListener interface in Dynamsoft Capture Vision Module Java Edition.
5+
keywords: capture state listener, java
6+
needAutoGenerateSidebar: true
7+
needGenerateH3Content: true
8+
---
9+
10+
# CaptureStateListener
11+
12+
Defines a listener for capture state changes.
13+
14+
## Definition
15+
16+
*Namespace:* com.dynamsoft.cvr
17+
18+
```java
19+
interface CaptureStateListener
20+
```
21+
22+
## Methods
23+
24+
| Method | Description |
25+
| ------------------------------------------------- | -------------------------------------- |
26+
| [`onCaptureStateChanged`](#oncapturestatechanged) | Called when the capture state changes. |
27+
28+
### onCaptureStateChanged
29+
30+
Called when the capture state changes.
31+
32+
```java
33+
default void onCaptureStateChanged(@EnumCaptureState int state)
34+
```
35+
36+
**Parameters**
37+
38+
`state` The new capture state. It is one of the values of the `EnumCaptureState` enumeration.
39+
40+
**See Also**
41+
42+
[EnumCaptureState]({{ site.dcvb_java_api }}capture-vision-router/enum-capture-state.html)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
layout: default-layout
3+
title: CaptureVisionRouterModule Class - Dynamsoft Capture Vision Module Java Edition API Reference
4+
description: Definition of CaptureVisionRouterModule class in Dynamsoft Capture Vision Module Java Edition.
5+
keywords: capture vision router module, java
6+
needAutoGenerateSidebar: true
7+
needGenerateH3Content: true
8+
---
9+
10+
# CaptureVisionRouterModule
11+
12+
The `CaptureVisionRouterModule` class defines general functions in the capture vision router module.
13+
14+
## Definition
15+
16+
*Package:* com.dynamsoft.cvr
17+
18+
```java
19+
public class CaptureVisionRouterModule
20+
```
21+
22+
## Methods
23+
24+
| Method | Description |
25+
| -------------------------- | -------------------------------------------------- |
26+
| [`getVersion`](#getversion) | Returns the version of the capture vision router module. |
27+
28+
### getVersion
29+
30+
Returns the version of the capture vision router module.
31+
32+
```java
33+
public static String getVersion()
34+
```
35+
36+
**Return Value**
37+
38+
Returns a string representing the version of the capture vision router module.

0 commit comments

Comments
 (0)