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


Python ChannelService.Client方法代码示例

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


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

示例1: Auth

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Auth(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)
        
        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._auth  = AuthService.Client(self.protocol)
        
        if isopen:
            self.transport.open()

        return self._auth 
开发者ID:arifistifik,项目名称:dpk,代码行数:13,代码来源:session.py

示例2: Talk

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Talk(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)
        
        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._talk  = TalkService.Client(self.protocol)
        
        if isopen:
            self.transport.open()

        return self._talk 
开发者ID:arifistifik,项目名称:dpk,代码行数:13,代码来源:session.py

示例3: Channel

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Channel(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._channel  = ChannelService.Client(self.protocol)
        
        if isopen:
            self.transport.open()

        return self._channel 
开发者ID:arifistifik,项目名称:dpk,代码行数:13,代码来源:session.py

示例4: Call

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Call(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._call  = CallService.Client(self.protocol)
        
        if isopen:
            self.transport.open()

        return self._call 
开发者ID:arifistifik,项目名称:dpk,代码行数:13,代码来源:session.py

示例5: Square

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Square(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._square  = SquareService.Client(self.protocol)
        
        if isopen:
            self.transport.open()

        return self._square 
开发者ID:arifistifik,项目名称:dpk,代码行数:13,代码来源:session.py

示例6: Auth

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Auth(self, isopen=True):
        self.transport = THttpClient(self.host, customThrift=self.customThrift)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._auth  = AuthService.Client(self.protocol)

        if isopen:
            self.transport.open()

        return self._auth 
开发者ID:crash-override404,项目名称:linepy-modified,代码行数:13,代码来源:session.py

示例7: Talk

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Talk(self, isopen=True):
        self.transport = THttpClient(self.host, customThrift=self.customThrift)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._talk  = TalkService.Client(self.protocol)
        if isopen:
            self.transport.open()

        return self._talk 
开发者ID:crash-override404,项目名称:linepy-modified,代码行数:12,代码来源:session.py

示例8: Channel

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Channel(self, isopen=True):
        self.transport = THttpClient(self.host, customThrift=self.customThrift)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._channel  = ChannelService.Client(self.protocol)

        if isopen:
            self.transport.open()

        return self._channel 
开发者ID:crash-override404,项目名称:linepy-modified,代码行数:13,代码来源:session.py

示例9: Call

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Call(self, isopen=True):
        self.transport = THttpClient(self.host, customThrift=self.customThrift)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._call  = CallService.Client(self.protocol)

        if isopen:
            self.transport.open()

        return self._call 
开发者ID:crash-override404,项目名称:linepy-modified,代码行数:13,代码来源:session.py

示例10: Square

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Square(self, isopen=True):
        self.transport = THttpClient(self.host, customThrift=self.customThrift)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._square  = SquareService.Client(self.protocol)

        if isopen:
            self.transport.open()

        return self._square 
开发者ID:crash-override404,项目名称:linepy-modified,代码行数:13,代码来源:session.py

示例11: Liff

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Liff(self, isopen=True):
        self.transport = THttpClient(self.host, customThrift=self.customThrift)
        self.transport.setCustomHeaders(self.headers)

        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._liff  = LiffService.Client(self.protocol)

        if isopen:
            self.transport.open()

        return self._liff 
开发者ID:crash-override404,项目名称:linepy-modified,代码行数:13,代码来源:session.py

示例12: Auth

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Auth(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)
        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._auth  = AuthService.Client(self.protocol)
        if isopen:
            self.transport.open()
        return self._auth 
开发者ID:prankbots,项目名称:final,代码行数:10,代码来源:session.py

示例13: Talk

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Talk(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)
        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._talk  = TalkService.Client(self.protocol)
        if isopen:
            self.transport.open()
        return self._talk 
开发者ID:prankbots,项目名称:final,代码行数:10,代码来源:session.py

示例14: Channel

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Channel(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)
        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._channel  = ChannelService.Client(self.protocol)
        if isopen:
            self.transport.open()
        return self._channel 
开发者ID:prankbots,项目名称:final,代码行数:10,代码来源:session.py

示例15: Call

# 需要导入模块: from akad import ChannelService [as 别名]
# 或者: from akad.ChannelService import Client [as 别名]
def Call(self, isopen=True):
        self.transport = THttpClient.THttpClient(self.host)
        self.transport.setCustomHeaders(self.headers)
        self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
        self._call  = CallService.Client(self.protocol)
        if isopen:
            self.transport.open()
        return self._call 
开发者ID:prankbots,项目名称:final,代码行数:10,代码来源:session.py


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