コード例 #1
0
ファイル: conversation.py プロジェクト: pkediyal/pyon
    def __init__(self, **kwargs):
        ProcessRPCClient.__init__(self, **kwargs)
        self._conv_type = RPCConversationType()

        if hasattr(self._process, 'name'):
            self._participant = Participant(self._process.name)
        else:
            self._participant = Participant(self._send_name)
コード例 #2
0
ファイル: conversation.py プロジェクト: newbrough/pyon
    def __init__(self, **kwargs):
        ProcessRPCClient.__init__(self, **kwargs)
        self._conv_type = RPCConversationType()

        if hasattr(self._process, "name"):
            self._participant = Participant(self._process.name)
        else:
            self._participant = Participant(self._send_name)