global

def schedule(&block)

def schedule(&block)
	ASYNC_TASK_SCHEDULED.emit(1)
	
	super(&block)
ensure
	ASYNC_TASK_FINISHED.emit(1)
end