示例#1
0
def dispatcher_add( method ):
	global __min_timer
	__min_timer = dispatch.MIN_TIMER
	dispatch.dispatcher_add( method )
示例#2
0
def dispatcher_add(method):
    dispatch.dispatcher_add(method)
示例#3
0
def dispatcher_add(method):
    dispatch.dispatcher_add(method)
示例#4
0
def dispatcher_add( method, min_timeout = True ):
	global __min_timer
	__min_timer = dispatch.dispatcher_add( method, min_timeout )
示例#5
0
def dispatcher_add( method, min_timeout = True ):
	"""Adds a dispatcher function. These methods are invoked by the
	mainloop as the last action of a step."""
	global __min_timer
	__min_timer = dispatch.dispatcher_add( method, min_timeout )
示例#6
0
def dispatcher_add(method, min_timeout=True):
    global __min_timer
    __min_timer = dispatch.dispatcher_add(method, min_timeout)
示例#7
0
def dispatcher_add(method, min_timeout=True):
    """Adds a dispatcher function. These methods are invoked by the
	mainloop as the last action of a step."""
    global __min_timer
    __min_timer = dispatch.dispatcher_add(method, min_timeout)