title: “EXCEPTION::FLUSH Function” date: 2023-01-01 author: “laplante@plcb.ca” version: “1.0.0”
exception::flush — flush the current output buffer
The exception::flush
function flushes the current output buffer.
It can be used when streaming output is required, forcing the buffer to be written immediately.
res={{
i := 0;
timeout("7s");
for true {
i++;
"."; flush(); sleep("1s");
}
i;
}}.
return (error message is not complete)
res=....... timeout after 7s