I'm using App42 Custom-Code feature, I want to know how objects are instantiated, i.e. is there a single instance of my class that implements Executer and the function execute is called for every request, or a new instance is instantiated for every request.

有帮助吗?

解决方案

When request arrives at server, new instance is created for that request and execute method is called on the same. Also, Executor class get unloaded after processing your request.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top