|
3134 | 3134 | }, |
3135 | 3135 | "timeout": { |
3136 | 3136 | "title": "Timeout Property", |
3137 | | - "description": "超时时间(毫秒)。可选,默认 20000 (20秒)。", |
| 3137 | + "description": "超时时间(毫秒)。可选,默认 20000 (20秒)。设置为 -1 表示无限等待。", |
3138 | 3138 | "type": "integer", |
3139 | 3139 | "default": 20000, |
3140 | | - "markdownDescription": "*int*\n\n超时时间(毫秒)。可选,默认 20000 (20秒)。" |
| 3140 | + "markdownDescription": "*int*\n\n超时时间(毫秒)。可选,默认 20000 (20秒)。\n\n设置为 -1 表示无限等待,永不超时。" |
3141 | 3141 | } |
3142 | 3142 | }, |
3143 | 3143 | "required": [ |
|
4028 | 4028 | }, |
4029 | 4029 | "timeout": { |
4030 | 4030 | "title": "Timeout Property", |
4031 | | - "description": "识别超时时间,毫秒。可选,默认 20 * 1000 。", |
4032 | | - "$ref": "#/$defs/jsonNInt64", |
4033 | | - "markdownDescription": "*uint*\n\n识别超时时间,毫秒。可选,默认 20 * 1000 。", |
| 4031 | + "description": "识别超时时间,毫秒。可选,默认 20 * 1000 。设置为 -1 表示无限等待。", |
| 4032 | + "$ref": "#/$defs/jsonInt64", |
| 4033 | + "markdownDescription": "*int*\n\n识别超时时间,毫秒。可选,默认 20 * 1000 。\n\n设置为 -1 表示无限等待,永不超时。", |
4034 | 4034 | "default": 20000 |
4035 | 4035 | } |
4036 | 4036 | } |
|
4111 | 4111 | }, |
4112 | 4112 | "timeout": { |
4113 | 4113 | "title": "Timeout Property", |
4114 | | - "description": "识别超时时间,毫秒。可选,默认 20 * 1000 。", |
4115 | | - "$ref": "#/$defs/jsonNInt64", |
| 4114 | + "description": "识别超时时间,毫秒。可选,默认 20 * 1000 。设置为 -1 表示无限等待。", |
| 4115 | + "$ref": "#/$defs/jsonInt64", |
4116 | 4116 | "default": 20000, |
4117 | | - "markdownDescription": "*uint*\n\n识别超时时间,毫秒。可选,默认 20 * 1000 。\n\n具体逻辑为 `while(!timeout) { foreach(next); sleep_until(rate_limit); }` 。" |
| 4117 | + "markdownDescription": "*int*\n\n识别超时时间,毫秒。可选,默认 20 * 1000 。\n\n设置为 -1 表示无限等待,永不超时。\n\n具体逻辑为 `while(!timeout) { foreach(next); sleep_until(rate_limit); }` 。" |
4118 | 4118 | }, |
4119 | 4119 | "on_error": { |
4120 | 4120 | "title": "On Error Property", |
|
0 commit comments