Skip to content

update qvs readme[ci skip] #497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 11, 2020
Merged
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
19 changes: 15 additions & 4 deletions src/main/java/com/qiniu/qvs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
- [x] 禁用流: disableStream(String namespaceId, String streamId)
- [x] 启用流: enableStream(String namespaceId, String streamId)
- [x] 查询推流记录: queryStreamPubHistories(String namespaceId, String streamId, int start, int end, int offset, int line)

- [x] 停用流: stopStream(String namespaceId, String streamId)

- 设备管理
- [x] 创建设备: createDevice(String namespaceId, Device device)
- [x] 删除设备: deleteDevice(String namespaceId, String gbId)
Expand Down Expand Up @@ -75,9 +76,10 @@
* [禁用流](#禁用流)
* [启用流](#启用流)
* [删除流](#删除流)

- [设备管理](#设备管理)

* [停用流](#停用流)

- [设备管理](#设备管理)

- [创建设备](#创建设备)
- [删除设备](#删除设备)
- [查询设备](#查询设备)
Expand Down Expand Up @@ -270,6 +272,15 @@ streamManager.enableStream(namespaceId, stream.getStreamID());
streamManager.deleteStream(namespaceId, stream.getStreamID());
```

#### 停用流

```
// 停用流
streamManager.stopStream(namespaceId, stream.getStreamID());
```



### 设备管理

#### 创建设备
Expand Down