美文网首页
Python 回调函数

Python 回调函数

作者: 陈忠俊 | 来源:发表于2019-10-13 17:43 被阅读0次

所有的进程调用test2函数,test2 输出test1对应进程里的数据

from multiprocessing import Pool
import time
import os
def test1(n):
    print(os.getppid())
    print(time.asctime(), os.getpid())
    print("test1.func is running")
    time.sleep(0.5)
    return n + 1

def test2(m):
    print(time.time(), os.getpid())
    print("test2.func is running")
    print(m)

if __name__ == "__main__":
    p = Pool(2)
    for i in range(10, 14):
        p.apply_async(test1, args = (i,), callback = test2)
    p.close()
    p.join()

输出结果

$ py -3 callback_func.py
15076
Sun Oct 13 17:42:46 2019 14684
test1.func is running
15076
Sun Oct 13 17:42:46 2019 12792
test1.func is running
1570959767.107586 15076
test2.func is running
11
1570959767.1114893 15076
test2.func is running
12
15076
Sun Oct 13 17:42:47 2019 14684
test1.func is running
15076
Sun Oct 13 17:42:47 2019 12792
test1.func is running
1570959767.624987 15076
test2.func is running
13
1570959767.6268208 15076
test2.func is running
14

相关文章

  • mqtt python包回调分析

    mqtt的python包,回调函数比较复杂,每次在连接之前,需要先实现回调函数,回调函数的传入参数固定 将回调函数...

  • python 处理多线程返回值

    python线程池有一个回调函数,可以通过回调函数处理线程返回值,线程池的回调函数默认有一个 workWorkRe...

  • 理解 Python 装饰器与回调函数

    1.理解 Python 装饰器2.Python装饰器和回调函数回调函数就是一个通过函数指针调用的函数。如果你把函数...

  • python回调函数

    通常在实际应用中有人写的框架中包含了一个回调函数,需要我们传入一个函数作为参数(这种方式不是面向切面的编程,这个我...

  • python回调函数

    散了,这里我多说了直接上代码了。导入time,模拟延时效果 创建callback函数 创建延时函数 调用,查看效果

  • Python 回调函数

    所有的进程调用test2函数,test2 输出test1对应进程里的数据 输出结果

  • Python回调函数

    回调函数什么时候用?(回调函数在爬虫中最常用) 造数据的非常耗时 处理数据的时候不耗时 你下载的地址如果完成了,就...

  • JavaScript函数_08回调函数

    回调函数 回调函数(回调),当我们把某个函数作为参数传递给另一个函数的时候,这个函数就是回调函数 回调函数的基本写...

  • Promise

    回调 把一个函数A传给另一个函数B调用,那么A就是回调函数。 回调地狱 回调套回调套回调套回调套回调套回调套回调....

  • Python 调用dll Part2

    第二部分主要介绍将 Python 函数做为回调函数传给dll的方法。 实现回调注册的原理,主要是通过ctypes....

网友评论

      本文标题:Python 回调函数

      本文链接:https://www.haomeiwen.com/subject/nqkkmctx.html