当前位置: 首页>>代码示例>>Python>>正文


Python RPCClient.create_endpoint方法代码示例

本文整理汇总了Python中pyon.net.endpoint.RPCClient.create_endpoint方法的典型用法代码示例。如果您正苦于以下问题:Python RPCClient.create_endpoint方法的具体用法?Python RPCClient.create_endpoint怎么用?Python RPCClient.create_endpoint使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyon.net.endpoint.RPCClient的用法示例。


在下文中一共展示了RPCClient.create_endpoint方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: create_endpoint

# 需要导入模块: from pyon.net.endpoint import RPCClient [as 别名]
# 或者: from pyon.net.endpoint.RPCClient import create_endpoint [as 别名]
    def create_endpoint(self, to_name=None, existing_channel=None, **kwargs):
        if not self._process:
            raise StandardError("No Process specified")

        newkwargs = kwargs.copy()
        newkwargs['process'] = self._process
        return RPCClient.create_endpoint(self, to_name, existing_channel, **newkwargs)
开发者ID:oldpatricka,项目名称:pyon,代码行数:9,代码来源:endpoint.py

示例2: create_endpoint

# 需要导入模块: from pyon.net.endpoint import RPCClient [as 别名]
# 或者: from pyon.net.endpoint.RPCClient import create_endpoint [as 别名]
    def create_endpoint(self, to_name=None, existing_channel=None, **kwargs):
        if not self._process:
            raise StandardError("No Process specified")

        # upgrade to exchange object
        if to_name is None and not isinstance(self._send_name, BaseTransport):
            container = self._process.container or self._get_container_instance()
            if not container:
                raise StandardError("No container found, can not upgrade to ExchangeObject")

            if self._declare_name:
                self._send_name = container.create_service_xn(self._send_name)

        # upgrade one timers too
        if to_name is not None and not isinstance(to_name, BaseTransport):
            container = self._process.container or self._get_container_instance()
            if not container:
                raise StandardError("No container found, can not upgrade to ExchangeObject")

            if self._declare_name:
                to_name = container.create_service_xn(to_name)

        newkwargs = kwargs.copy()
        newkwargs['process'] = self._process
        return RPCClient.create_endpoint(self, to_name, existing_channel, **newkwargs)
开发者ID:edwardhunter,项目名称:scioncc,代码行数:27,代码来源:endpoint.py


注:本文中的pyon.net.endpoint.RPCClient.create_endpoint方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。