Question

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.

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top