Skip to content

Commit 6113c91

Browse files
committed
update qvs readme[ci skip]
1 parent fc38f91 commit 6113c91

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/main/java/com/qiniu/qvs/README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
- [x] 禁用流: disableStream(String namespaceId, String streamId)
2424
- [x] 启用流: enableStream(String namespaceId, String streamId)
2525
- [x] 查询推流记录: queryStreamPubHistories(String namespaceId, String streamId, int start, int end, int offset, int line)
26-
26+
- [x] 停用流: stopStream(String namespaceId, String streamId)
27+
2728
- 设备管理
2829
- [x] 创建设备: createDevice(String namespaceId, Device device)
2930
- [x] 删除设备: deleteDevice(String namespaceId, String gbId)
@@ -75,9 +76,10 @@
7576
* [禁用流](#禁用流)
7677
* [启用流](#启用流)
7778
* [删除流](#删除流)
78-
79-
- [设备管理](#设备管理)
80-
79+
* [停用流](#停用流)
80+
81+
- [设备管理](#设备管理)
82+
8183
- [创建设备](#创建设备)
8284
- [删除设备](#删除设备)
8385
- [查询设备](#查询设备)
@@ -270,6 +272,15 @@ streamManager.enableStream(namespaceId, stream.getStreamID());
270272
streamManager.deleteStream(namespaceId, stream.getStreamID());
271273
```
272274

275+
#### 停用流
276+
277+
```
278+
// 停用流
279+
streamManager.stopStream(namespaceId, stream.getStreamID());
280+
```
281+
282+
283+
273284
### 设备管理
274285

275286
#### 创建设备

0 commit comments

Comments
 (0)