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


Python AMP.__init__方法代码示例

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


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

示例1: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, agent):
     """
     :param IConvergenceAgent agent: Convergence agent to notify of changes.
     """
     locator = _AgentLocator(agent)
     AMP.__init__(self, locator=locator)
     self.agent = agent
开发者ID:ALSEDLAH,项目名称:flocker,代码行数:9,代码来源:_protocol.py

示例2: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, *a, **kw):
     AMP.__init__(self, *a, **kw)
     self._producers = {}
     self._consumers = {}
     self._buffers = {}
     self._pending = {}
     self._waitingOnCompletion = {}
     self._draining = set()
开发者ID:habnabit,项目名称:txampproducer,代码行数:10,代码来源:__init__.py

示例3: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, reactor, agent):
     """
     :param IReactorTime reactor: A reactor to use to schedule periodic ping
         [email protected]
     :param IConvergenceAgent agent: Convergence agent to notify of changes.
     """
     locator = _AgentLocator(agent, timeout_for_protocol(reactor, self))
     AMP.__init__(self, locator=locator)
     self.agent = agent
     self._pinger = Pinger(reactor)
开发者ID:Elenw,项目名称:flocker,代码行数:12,代码来源:_protocol.py

示例4: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, reactor, control_amp_service):
     """
     :param reactor: See ``ControlServiceLocator.__init__``.
     :param ControlAMPService control_amp_service: The service managing AMP
         connections to the control service.
     """
     locator = ControlServiceLocator(reactor, control_amp_service)
     AMP.__init__(self, locator=locator)
     self.control_amp_service = control_amp_service
     self._pinger = Pinger(reactor)
开发者ID:stmcginnis,项目名称:flocker,代码行数:12,代码来源:_protocol.py

示例5: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, reactor, agent):
     """
     :param IReactorTime reactor: A reactor to use to schedule periodic ping
         operations.
     :param IConvergenceAgent agent: Convergence agent to notify of changes.
     """
     locator = _AgentLocator(agent)
     AMP.__init__(self, locator=locator)
     self.agent = agent
     self._pinger = Pinger(reactor)
开发者ID:achanda,项目名称:flocker,代码行数:12,代码来源:_protocol.py

示例6: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self):
     MultiplexingCommandLocator.__init__(self)
     AMP.__init__(self)
开发者ID:BanzaiMan,项目名称:merlyn,代码行数:5,代码来源:service.py

示例7: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, isServer, startupD):
     self.isServer = isServer
     AMP.__init__(self)
     self.startupD = startupD
开发者ID:exarkun,项目名称:vertex,代码行数:6,代码来源:test_q2q.py

示例8: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, avatarId):
     AMP.__init__(self)
     self.avatarId = avatarId
开发者ID:pombredanne,项目名称:epsilon,代码行数:5,代码来源:auth_server.py

示例9: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, nexus):
     AMP.__init__(self)
     self.nexus = nexus
     self.sentTransloads = []
开发者ID:chellygel,项目名称:vertex,代码行数:6,代码来源:sigma.py

示例10: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, identifier):
     AMP.__init__(self)
     self.identifier = identifier
     self.finished = Deferred()
开发者ID:pombredanne,项目名称:epsilon,代码行数:6,代码来源:route_client.py

示例11: __init__

# 需要导入模块: from twisted.protocols.amp import AMP [as 别名]
# 或者: from twisted.protocols.amp.AMP import __init__ [as 别名]
 def __init__(self, details, new_connection_callback, connection_lost_callback):
     AMP.__init__(self)
     self.details = details
     self.new_connection_callback = new_connection_callback
     self.connection_lost_callback = connection_lost_callback
开发者ID:intk,项目名称:perry,代码行数:7,代码来源:control.py


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