Function process()

← Back to Module multiprocess



Module multiprocess → process()

Description

Run .fio file in a separate process (child process)

process(file, args = [], on_updated = nothing, on_returned = nothing, on_finished = nothing)


Parameters


Return Value


Usage Example

import multiprocess
 
process("child", [10, "Hello"], nothing, nothing, process_finished())
 
function process_finished()
    writeln("A child process finished.")
stop