Python线程事件驱动详细操作教程
loop = get_event_loop()-此方法将为当前上下文提供事件循环。
loop.call_later(time_delay,callback,argument)-此方法安排在给定time_delay秒后调用的回调。
loop.call_soon(callback,argument)-此方法安排了一个尽快被调用的回调。在call_soon()返回之后以及控件返回事件循环时调用该回调。
loop.time()-此方法用于根据事件循环的内部时钟返回当前时间。
asyncio.set_event_loop()-此方法会将当前上下文的事件循环设置为循环。
asyncio.new_event_loop()-此方法将创建并返回一个新的事件循环对象。
loop.run_forever()-此方法将一直运行,直到调用stop()方法为止。
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
import asyncio
def hello_world(loop):
print('Hello World')
loop.stop()
loop = asyncio.get_event_loop()
loop.call_soon(hello_world, loop)
loop.run_forever()
loop.close()
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
Hello World
result()和exception()方法不会使用超时参数,并且在未来还没有完成时会引发异常。
在add_done_callback()中注册的回调总是通过事件循环的call_soon()进行调用。
asyncio.futures.Future类与并发.futures包中的wait()和as_completed()函数不兼容。
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
import asyncio
async def Myoperation(future):
await asyncio.sleep(2)
future.set_result('Future Completed')
loop = asyncio.get_event_loop()
future = asyncio.Future()
asyncio.ensure_future(Myoperation(future))
try:
loop.run_until_complete(future)
print(future.result())
finally:
loop.close()
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
Future Completed
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
import asyncio
async def Myoperation():
print("First Coroutine")
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(Myoperation())
finally:
loop.close()
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
First Coroutine
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
import asyncio
@asyncio.coroutine
def Myoperation():
print("First Coroutine")
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(Myoperation())
finally:
loop.close()
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
First Coroutine
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
import asyncio
import time
async def Task_ex(n):
time.sleep(1)
print("Processing {}".format(n))
async def Generator_task():
for i in range(10):
asyncio.ensure_future(Task_ex(i))
int("Tasks Completed")
asyncio.sleep(2)
loop = asyncio.get_event_loop()
loop.run_until_complete(Generator_task())
loop.close()
# Filename : example.py
# Copyright : 2020 By Bianchenghao6
# Author by : bianchenghao6.com
# Date : 2020-08-22
Tasks Completed
Processing 0
Processing 1
Processing 2
Processing 3
Processing 4
Processing 5
Processing 6
Processing 7
Processing 8
Processing 9
ReadTransport -这是只读传输的接口。
WriteTransport -这是仅写传输的接口。
DatagramTransport -这是用于发送数据的接口。
BaseSubprocessTransport -类似于BaseTransport类。
close()-关闭传输。
is_closing()-如果传输正在关闭或已经关闭,则此方法将返回true。 get_extra_info(name,default = none)-这将为我们提供有关运输的更多信息。 get_protocol()-此方法将返回当前协议。
协议-这是实现用于TCP和SSL传输的流协议的基类。 DatagramProtocol -这是用于实现与UDP传输一起使用的数据报协议的基类。 SubprocessProtocol -这是用于实现通过一组单向管道与子进程进行通信的协议的基类。