Service Class Per-Request Question about instances

Hello,

I am changing some of our service to your great product.

I want to be 100% sure on this->

In this case:

The functions with no [ROSERVICEMETHOD] can be use it inside de instance for the other functions, but are not exposed in the server to use for the clients?

and →

all the visual elements are created per-request, and only to use by the current instance, and are destroyed after consuming the function?

Thanks for the information about this.

best regards.

Hi,

yes. You can launch server-side and check generated RODL

from Per Request or Standard Class Factory article:

This is the default class factory for new services and it implements a minimal activation model by simply creating a new instance for each incoming request and destroying the instance after the request has completed.

Many thanks for your quick response.