コード例 #1
0
ファイル: nf_generic.py プロジェクト: jpmunz/smartplayer
def dispatcher_add( method ):
	global __min_timer
	__min_timer = dispatch.MIN_TIMER
	dispatch.dispatcher_add( method )
コード例 #2
0
ファイル: nf_twisted.py プロジェクト: foolchan2556/ka-lite
def dispatcher_add(method):
    dispatch.dispatcher_add(method)
コード例 #3
0
ファイル: nf_twisted.py プロジェクト: kanyanat3/ka-lite
def dispatcher_add(method):
    dispatch.dispatcher_add(method)
コード例 #4
0
ファイル: nf_qt.py プロジェクト: JuergenBS/python-notifier
def dispatcher_add( method, min_timeout = True ):
	global __min_timer
	__min_timer = dispatch.dispatcher_add( method, min_timeout )
コード例 #5
0
ファイル: nf_generic.py プロジェクト: pmhahn/python-notifier
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)