I am using python in arcmap 10.0 to execute "Topo To Raster" tool. I am successful to execute this in blocking/sync mode. but I want to execute this tool with python in async mode.
workspacePath = sys.argv[1]
input = sys.argv[2]
output = sys.argv[3]
arcpy.TopoToRaster_3d(input,output)