Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

async await - Using Python's asyncio when calling a method from a pythonnet C# dll?

I'm using LibreHardwareMonitor (A fork of OpenHardwareMonitor) to read info about my computer to build an open-source monitoring system. It works great but when calling the C# Update() method on various hardware, it hangs and asyncio would be perfect for this situation, as all calls to Update() could be sent at the same time then the code could resume when all the results are in, instead of waiting for one at a time.

I checked in the LibreHardwareMonitor library code and they don't seem to use async however. I don't know if this is relevant and if pythonnet can ignore that.

Simple sample code:

import clr
clr.AddReference("LibreHardwareMonitorLib.dll")
from LibreHardwareMonitor import Hardware

handle = Hardware.Computer()
handle.Open()

# Get updates about hardware sensors (motherboard, cpu, etc)
handle.Hardware[0].Update()  # Hangs
handle.Hardware[1].Update()  # Hangs
handle.Hardware[2].Update()  # Hangs

Is it possible somehow to send these calls to Update() all at the same time with await? I tried and it doesn't work as Update() returns void.

question from:https://stackoverflow.com/questions/65931029/using-pythons-asyncio-when-calling-a-method-from-a-pythonnet-c-sharp-dll

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...