你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
AnalyzeHealthcareEntitiesLROPoller 类
- 继承
-
azure.core.polling._poller.LROPollerAnalyzeHealthcareEntitiesLROPoller
构造函数
AnalyzeHealthcareEntitiesLROPoller(client: Any, initial_response: Any, deserialization_callback: Callable[[Any], PollingReturnType_co], polling_method: PollingMethod[PollingReturnType_co])
参数
名称 | 说明 |
---|---|
client
必需
|
|
initial_response
必需
|
|
deserialization_callback
必需
|
|
polling_method
必需
|
|
方法
add_done_callback |
添加回调函数,以在长时间运行的操作完成后运行 - 无论操作的状态如何。 |
cancel |
取消当前正在轮询的操作。 |
continuation_token |
返回允许稍后重新启动轮询的继续标记。 |
done |
检查长时间运行的操作的状态。 |
polling_method |
返回与此轮询器关联的轮询方法。 |
remove_done_callback |
从长时间运行的操作中删除回调。 |
result |
返回长时间运行的操作的结果,或指定超时后可用的结果。 |
status |
返回当前状态字符串。 |
wait |
等待长时间运行的操作指定的时间长度。 如果此调用以“done () ”方法超时结束,则可以检查。 |
add_done_callback
添加回调函数,以在长时间运行的操作完成后运行 - 无论操作的状态如何。
add_done_callback(func: Callable) -> None
参数
名称 | 说明 |
---|---|
func
必需
|
采用至少一个参数的回调函数,即已完成的 LongRunningOperation。 |
cancel
取消当前正在轮询的操作。
cancel(**kwargs: Any) -> LROPoller[None]
仅限关键字的参数
名称 | 说明 |
---|---|
polling_interval
|
用于轮询取消状态的轮询间隔。 默认值为 5 秒。 |
返回
类型 | 说明 |
---|---|
返回返回 None 的 LROPoller 实例。 |
例外
类型 | 说明 |
---|---|
当操作已达到终端状态时。 |
示例
取消现有运行状况操作。
import os
from azure.core.exceptions import HttpResponseError
from azure.core.credentials import AzureKeyCredential
from azure.ai.textanalytics import TextAnalyticsClient
endpoint = os.environ["AZURE_LANGUAGE_ENDPOINT"]
key = os.environ["AZURE_LANGUAGE_KEY"]
text_analytics_client = TextAnalyticsClient(
endpoint=endpoint,
credential=AzureKeyCredential(key),
)
documents = [
"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | \
CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 \
Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: \
CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: \
The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \
The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and \
50% left main disease , with a strong family history of coronary artery disease with a brother dying at \
the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. \
The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities ,\
but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions \
in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \
increased symptoms and family history and history left main disease with total occasional of his RCA was referred \
for revascularization with open heart surgery."
]
poller = text_analytics_client.begin_analyze_healthcare_entities(documents)
try:
poller.cancel()
except HttpResponseError as e:
# If the operation has already reached a terminal state it cannot be cancelled.
print(e)
else:
print("Healthcare entities analysis was successfully cancelled.")
continuation_token
done
polling_method
返回与此轮询器关联的轮询方法。
polling_method() -> AnalyzeHealthcareEntitiesLROPollingMethod
返回
类型 | 说明 |
---|---|
<xref:AnalyzeHealthcareEntitiesLROPollingMethod>
|
AnalyzeHealthcareEntitiesLROPollingMethod |
remove_done_callback
从长时间运行的操作中删除回调。
remove_done_callback(func: Callable) -> None
参数
名称 | 说明 |
---|---|
func
必需
|
要从回调中删除的函数。 |
例外
类型 | 说明 |
---|---|
如果长时间运行的操作已完成,则为 。 |
result
返回长时间运行的操作的结果,或指定超时后可用的结果。
result(timeout: float | None = None) -> PollingReturnType_co
参数
名称 | 说明 |
---|---|
timeout
|
在恢复控制权之前等待的时间段。 默认值: None
|
返回
类型 | 说明 |
---|---|
any,
|
长时间运行的操作的反序列化资源(如果有)。 |
例外
类型 | 说明 |
---|---|
查询的服务器问题。 |
status
wait
等待长时间运行的操作指定的时间长度。 如果此调用以“done () ”方法超时结束,则可以检查。
wait(timeout: float | None = None) -> None
参数
名称 | 说明 |
---|---|
timeout
必需
|
等待长时间运行的操作完成的时间段,以秒为单位) (。 |
例外
类型 | 说明 |
---|---|
查询的服务器问题。 |