---
title: Operation枚举类
description: "Operation枚举类，表示请求停止的类型。"
url: https://www.hiascend.com/document/detail/zh/mindie/latest/mindiellm/llmdev/mindie_llm0152.html
sourcePath: /source/zh/mindie/310/mindiellm/llmdev/mindie_llm0152.html
indexId: 3d6e126377c66de8bfce8292662a8fa47069ca776a965d5339e1c74fb2ca30c158
---
# Operation枚举类

#### 枚举类功能

Operation枚举类，表示请求停止的类型。


#### 枚举类格式

```
enum class Operation {
STOP = 1,
RELEASE_KV = 2,
};
```


#### 枚举值

| 枚举名 | 说明 |
| --- | --- |
| STOP | 请求被stopInfer停止推理的类型。 |
| RELEASE\_KV | 请求在P节点释放完KV Cache的类型。 |
