4

我在一个项目中使用 Pyro,似乎无法理解如何通过网络传输完整的对象。该对象不是分布式的(我的分布式对象工作得很好),但应该作为一个已经可用的分布式对象的参数。

我的对象是从包含一些方法和一些变量的自定义类派生的——一个整数和一个列表。该类可用于服务器和客户端。当使用我的对象作为分布式对象的方法的参数时,整数变量被正确“接收”,但列表为空,即使我可以看到它包含在“发送”之前的值。

为什么是这样?

课程的简短版本:

class Collection(Pyro.core.ObjBase):
    num = 0
    operations = [("Operation:", "Value:", "Description", "Timestamp")]

def __init__(self):
    Pyro.core.ObjBase.__init__(self)

def add(self, val, desc):
    entry = ("Add", val, desc, strftime("%Y-%m-%d %H:%M:%S"))
    self.operations.append(entry)
    self.num = self.num + 1

def printop(self):
    print "This collection will execute the following operations:"
    for item in self.operations:
        print item

分布式对象中的接收方法:

def apply(self, collection):
    print "Todo: Apply collection"
    #op = collection.getop()
    print "Number of collected operations:", collection.a
    collection.printop()
4

2 回答 2

4

操作是类属性,而不是对象属性。这就是为什么它没有被转移。尝试__init__通过设置它self.operations = <whatever>

于 2009-01-28T14:04:50.243 回答
1

您的接收方法apply与内置 Python 函数同名。

于 2009-01-28T14:10:33.087 回答