webmcp
view framework/env/request/for_each.lua @ 365:6ad9f6113c52
Support for primary keys in JSON documents
author | jbe |
---|---|
date | Fri May 22 01:44:31 2015 +0200 (2015-05-22) |
parents | c3d539e33710 |
children |
line source
1 --[[--
2 request.for_each(
3 func -- function to be called on every request
4 )
6 Registers a function to be called on every request and executes it once. This mechanism can be used for __init.lua files in the environment to perform a per-request initialization. See env/request/__init.lua for an example.
8 --]]--
10 function request.for_each(func)
11 local initializers = request._initializers
12 initializers[#initializers+1] = func
13 func()
14 end