operation-status.md 1.05 KB
Newer Older
1
2
3
---
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
4
title: Operation Status
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---

Represents the current state or status of an operation.


## Values

### `CANCELLED`

The operation has been cancelled by the user or system.

### `COMPLETE`

The operation has been completed successfully.

### `ERRORED`

The operation has encountered an error and cannot be completed.

### `IN_PROGRESS`

The operation has been initialized and is in-progress (not completed, errored, or cancelled).

### `INITIALIZED`

The operation has been initialized and is ready to be processed.

### `UNINITIALIZED`

The operation has not been initialized yet and is not in a valid state.


## Related Classes

  - [Connector](connector.md)
  - [Descriptor](descriptor.md)
  - [Device](device.md)
  - [RdmaMetadata](rdma-metadata.md)
  - [ReadOperation](read-operation.md)
  - [ReadableOperation](readable-operation.md)
  - [WritableOperation](writable-operation.md)
  - [WriteOperation](write-operation.md)