Fix redbean OnLogLatency documentation (#1270)

The handler is called in the child worker process.
This commit is contained in:
jeromew 2024-08-31 19:13:14 +02:00 committed by GitHub
parent c9152b6f14
commit a6fe62cf13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -581,10 +581,10 @@ HOOKS
`true`, redbean will close the connection without calling fork. `true`, redbean will close the connection without calling fork.
OnLogLatency(reqtimeus:int, contimeus:int) OnLogLatency(reqtimeus:int, contimeus:int)
If this function is defined it'll be called from the main process If this function is defined it'll be called from the child worker
each time redbean completes handling of a request, but before the process each time redbean completes the handling of a request, but
response is sent. The handler received the time (in µs) since the before the response is sent. The handler receives the time (in µs)
request handling and connection handling started. since the request handling and connection handling started.
OnProcessCreate(pid:int, ip:int, port:int, serverip:int, serverport:int) OnProcessCreate(pid:int, ip:int, port:int, serverip:int, serverport:int)
If this function is defined it'll be called from the main process If this function is defined it'll be called from the main process