Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ The `CCaptureVisionRouter` class is what a user uses to interact with image-proc
class CCaptureVisionRouter
```

## Thread Safety

Instances of `CCaptureVisionRouter` are not thread-safe.
Do not access the same `CCaptureVisionRouter` instance from multiple threads concurrently.
Create a separate instance for each thread if concurrent processing is required.

## Constructor and Destructor

| Method | Description |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ Default constructor of a `CCaptureVisionRouter` object.
```cpp
CCaptureVisionRouter::CCaptureVisionRouter()
```

> [!IMPORTANT]
> Instances of `CCaptureVisionRouter` are not thread-safe.
> Do not access the same `CCaptureVisionRouter` instance from multiple threads concurrently.
> Create a separate instance for each thread if concurrent processing is required.


## ~CCaptureVisionRouter

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ The `CaptureVisionRouter` class is what a user uses to interact with image-proce
public class CaptureVisionRouter : IDisposable
```

## Thread Safety

Instances of `CaptureVisionRouter` are not thread-safe.
Do not access the same `CaptureVisionRouter` instance from multiple threads concurrently.
Create a separate instance for each thread if concurrent processing is required.


## Constructor and Destructor Methods

| Method | Description |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ Default constructor of a `CaptureVisionRouter` object.
CaptureVisionRouter()
```

> [!IMPORTANT]
> Instances of `CaptureVisionRouter` are not thread-safe.
> Do not access the same `CaptureVisionRouter` instance from multiple threads concurrently.
> Create a separate instance for each thread if concurrent processing is required.

## ~CaptureVisionRouter

Destructor of a `CaptureVisionRouter` object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ The `CaptureVisionRouter` class is what a user uses to interact with image-proce
class CaptureVisionRouter
```

## Thread Safety

Instances of `CaptureVisionRouter` are not thread-safe.
Do not access the same `CaptureVisionRouter` instance from multiple threads concurrently.
Create a separate instance for each thread if concurrent processing is required.

## Constructor Methods

| Method | Description |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ Initializes a `CaptureVisionRouter` object.
public CaptureVisionRouter()
```

> [!IMPORTANT]
> Instances of `CaptureVisionRouter` are not thread-safe.
> Do not access the same `CaptureVisionRouter` instance from multiple threads concurrently.
> Create a separate instance for each thread if concurrent processing is required.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ The `CaptureVisionRouter` class is what a user uses to interact with image-proce
class CaptureVisionRouter
```

## Thread Safety

Instances of `CaptureVisionRouter` are not thread-safe.
Do not access the same `CaptureVisionRouter` instance from multiple threads concurrently.
Create a separate instance for each thread if concurrent processing is required.


## Constructor Methods

| Method | Description |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ Initializes a `CaptureVisionRouter` object.
def __init__(self):
```

> [!IMPORTANT]
> Instances of `CaptureVisionRouter` are not thread-safe.
> Do not access the same `CaptureVisionRouter` instance from multiple threads concurrently.
> Create a separate instance for each thread if concurrent processing is required.
Loading