representation of a thread that handles tasks directly assigned by go implements the threadHandler interface
| 10 | // representation of a thread that handles tasks directly assigned by go |
| 11 | // implements the threadHandler interface |
| 12 | type taskThread struct { |
| 13 | thread *phpThread |
| 14 | execChan chan *task |
| 15 | } |
| 16 | |
| 17 | // task callbacks will be executed directly on the PHP thread |
| 18 | // therefore having full access to the PHP runtime |
nothing calls this directly
no outgoing calls
no test coverage detected