App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Public Attributes | List of all members
google.appengine.dist27.threading._Timer Class Reference
Inheritance diagram for google.appengine.dist27.threading._Timer:
google.appengine.dist27.threading.Thread google.appengine.dist27.threading._Verbose

Public Member Functions

def __init__
 
def cancel
 
def run
 
- Public Member Functions inherited from google.appengine.dist27.threading.Thread
def __init__
 
def __repr__
 
def start
 
def run
 
def join
 
def name
 
def name
 
def ident
 
def isAlive
 
def daemon
 
def daemon
 
def isDaemon
 
def setDaemon
 
def getName
 
def setName
 
- Public Member Functions inherited from google.appengine.dist27.threading._Verbose
def __init__
 
def __init__
 

Public Attributes

 interval
 
 function
 
 args
 
 kwargs
 
 finished
 
- Public Attributes inherited from google.appengine.dist27.threading.Thread
 daemon
 
 name
 

Additional Inherited Members

- Static Public Attributes inherited from google.appengine.dist27.threading.Thread
 is_alive = isAlive
 

Detailed Description

Call a function after a specified number of seconds:

t = Timer(30.0, f, args=[], kwargs={})
t.start()
t.cancel() # stop the timer's action if it's still waiting

Member Function Documentation

def google.appengine.dist27.threading._Timer.cancel (   self)
Stop the timer if it hasn't finished yet

The documentation for this class was generated from the following file: