Hi I was wondering if there was a way of calling a function/method (preferably in Python or Java) and continue execution without waiting for it.
Example:
Using multiprocessing in python:
from multiprocessing import Process def b(): # long process p = Process(target=b) p.start()