Per Request or Standard Class Factory

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.

Use Cases

This class factory is most commonly used for simple service objects that are cheap to construct and destroy, and on servers with low or average load.

Class Factory Types

See Also