我有一個在構造函數中使用參數的對象。我想知道如何從Pyro4中提供這個服務。一個例子:Pyro4,爲構造函數參數提供對象。怎麼樣?
import Pyro4
class MyPyroThing(object):
def __init__(self, theNumber):
self.Number = theNumber
Pyro4.Daemon.serveSimple(
{
MyPyroThing(): None
},
ns=True, verbose=True)
這失敗當然因爲構造函數必須有一個參數。
當這個問題解決後,你如何調用這個對象?
theThing = Pyro4.Proxy("PYRONAME:MyPyroThing")
編輯:
我認爲這個問題沒有正確寫入,看到我的回答如下。
如果問題沒有按照您在自己的答案中的說法正確提問,請更新問題以便對其他人有用。 – jcollado