在rpyc python中传递类方法

时间:2015-02-17 02:09:46

标签: python rpyc

我见过使用teleport_function传递函数,有没有办法传递类方法?或者我可以以任何其他方式远程执行我的类对象

我可以通过将类作为服务来替代工作。但这并不能完全满足我在项目中的要求。

1 个答案:

答案 0 :(得分:-1)

import rpyc
from rpyc.utils.classic import teleport_function

def a(test):
    print test

if __name__ = '__main__':
    proxy = rpyc.classic.connect('remte.com')
    launch_command_remote = teleport_function(proxy, a)
    launch_command_remote("Voila") # Executed remotly