码迷,mamicode.com
首页 > 编程语言 > 详细

Python3.4 asyncio模块简介

时间:2014-05-06 14:52:09      阅读:509      评论:0      收藏:0      [点我收藏+]

标签:class   tar   get   http   数据   c   

这个模块提供了在单个线程上使用协程,适用基于网络及其他资源,有关IO密集型的服务端及客户端程序。

模块细节如下:

  • 适用于多系统可拆卸的事件循环(event loop)系统;
  • 数据传输(transport)和协议抽象(类似于Twisted);
  • 对TCP、UDP、SSL、子进程管道、延时调用(delayed calls)和其他一些系统特有的传输协议支持的实现;
  • a Future class that mimics the one in the concurrent.futures module, but adapted for use with the event loop;
  • 基于PEP380的协程和任务实现,使用yield from语句使得书写并发代码片段显得连贯;
  • Future与协程支持取消(停止运行);
  • 同步原语模拟threading模块的;
  • 提供向线程池转移作业的接口,为你在需要一些I/O阻塞的库时所用;

Python3.4 asyncio模块简介,布布扣,bubuko.com

Python3.4 asyncio模块简介

标签:class   tar   get   http   数据   c   

原文地址:http://blog.csdn.net/zagfai/article/details/20733303

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!