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


Python BaseThreadedModule.shutDown方法代码示例

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


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

示例1: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     self.accumulateReceiveRateStats()
     self.accumulateEventTypeStats()
     if self.lumbermill.is_master():
         self.printIntervalStatistics()
     self.mp_stats_collector.shutDown()
     BaseThreadedModule.shutDown(self)
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:9,代码来源:SimpleStats.py

示例2: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     if self.server:
         self.server.stop()
         # Give os time to free the socket. Otherwise a reload will fail with 'address already in use'
         time.sleep(.2)
     # Call parent shutDown method.
     BaseThreadedModule.shutDown(self)
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:9,代码来源:WebserverTornado.py

示例3: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     try:
         self.buffer.flush()
     except:
         pass
     try:
         self.client.close()
         self.zmq_context.term()
     except AttributeError:
         pass
     # Call parent shutDown method.
     BaseThreadedModule.shutDown(self)
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:14,代码来源:ZmqSink.py

示例4: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     try:
         self.buffer.flush()
     except:
         pass
     BaseThreadedModule.shutDown(self)
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:8,代码来源:Cache.py

示例5: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     # Call parent configure method.
     BaseThreadedModule.shutDown(self)
     self.socket.close()
     self.socket = None
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:7,代码来源:Pack.py

示例6: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     # Push any remaining facet data.
     self.evaluateFacets()
     # Call parent configure method.
     BaseThreadedModule.shutDown(self)
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:7,代码来源:Facet.py

示例7: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     BaseThreadedModule.shutDown(self)
     for thread in self.lookup_threads:
         thread.stop()
         thread.join()
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:7,代码来源:AddDnsLookup.py

示例8: shutDown

# 需要导入模块: from lumbermill.BaseThreadedModule import BaseThreadedModule [as 别名]
# 或者: from lumbermill.BaseThreadedModule.BaseThreadedModule import shutDown [as 别名]
 def shutDown(self):
     self.syslog_handler.close()
     BaseThreadedModule.shutDown(self)
开发者ID:dstore-dbap,项目名称:LumberMill,代码行数:5,代码来源:SyslogSink.py


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