Example #1
0
 def checkpoint(self, path, classname, method, args, kwargs):
     """ Writes information to disk so tasks can be executed remotely
     """
     argspath = join(path, 'kwargs')
     argsfile = join(argspath, classname+'_'+method+'.p')
     unix.mkdir(argspath)
     saveobj(argsfile, kwargs)
     save()
Example #2
0
 def checkpoint(self):
     """ Writes information to disk so workflow can be resumed following a
       break
     """
     save()
Example #3
0
 def checkpoint(self):
     save()
Example #4
0
 def checkpoint(self):
     """ Writes information to disk so workflow can be resumed in case of
       interruption        
     """
     save()
 def checkpoint(self):
     """ Writes information to disk so workflow can be resumed following a
       break
     """
     save()