webmcp
view framework/env/request/is_in_progress.lua @ 554:1e72fa29d3fb
Fixed wrong order of -l options in C-compiler invocation for extos library
| author | jbe | 
|---|---|
| date | Mon Feb 10 20:44:01 2020 +0100 (2020-02-10) | 
| parents | 93ebbc1e5dbc | 
| children | 
 line source
     1 --[[--
     2 bool =                    -- true, if a request is currently in progress (i.e. being answered)
     3 request.is_in_progress()
     5 This function can be used to check if a request is currently in progress. Returns false during configuration.
     7 --]]--
     9 function request.is_in_progress()
    10   return request._in_progress
    11 end
