コード例 #1
0
ファイル: Download.py プロジェクト: ebcabaybay/swiftarm
 def restart(self, initialdlstatus=None):
     """
     Restarts the stopped Download.
     
     @param initialdlstatus An optional parameter to restart the Download in 
     a specific state.
     """
     # Called by any thread
     DownloadImpl.restart(self, initialdlstatus)
コード例 #2
0
ファイル: Download.py プロジェクト: Anaconda84/Anaconda
 def restart(self,initialdlstatus=None):
     """
     Restarts the stopped Download.
     
     @param initialdlstatus An optional parameter to restart the Download in 
     a specific state.
     """
     # Called by any thread
     DownloadImpl.restart(self, initialdlstatus)
コード例 #3
0
ファイル: Download.py プロジェクト: nomadsummer/cs198mojo
 def restart(self):
     """ Restarts the stopped Download. """
     # Called by any thread
     DownloadImpl.restart(self)