Medical Imaging Interaction Toolkit
2024.06.00
Medical Imaging Interaction Toolkit
|
#include <usPrototypeServiceFactory.h>
Public Member Functions | |
InterfaceMap | GetService (Module *module, const ServiceRegistrationBase ®istration) override=0 |
void | UngetService (Module *module, const ServiceRegistrationBase ®istration, const InterfaceMap &service) override=0 |
Public Member Functions inherited from us::ServiceFactory | |
virtual | ~ServiceFactory () |
A factory for prototype scope services. The factory can provide multiple, unique service objects.
When registering a service, a PrototypeServiceFactory object can be used instead of a service object, so that the module developer can create a unique service object for each caller that is using the service. When a caller uses a ServiceObjects to request a service instance, the framework calls the GetService method to return a service object specifically for the requesting caller. The caller can release the returned service object and the framework will call the UngetService method with the service object. When a module uses the ModuleContext::GetService(const ServiceReferenceBase&) method to obtain a service object, the framework acts as if the service has module scope. That is, the framework will call the GetService method to obtain a module-scoped instance which will be cached and have a use count. See ServiceFactory.
A module can use both ServiceObjects and ModuleContext::GetService(const ServiceReferenceBase&) to obtain a service object for a service. ServiceObjects::GetService() will always return an instance provided by a call to GetService(Module*, const ServiceRegistrationBase&) and ModuleContext::GetService(const ServiceReferenceBase&) will always return the module-scoped instance. PrototypeServiceFactory objects are only used by the framework and are not made available to other modules. The framework may concurrently call a PrototypeServiceFactory.
Definition at line 59 of file usPrototypeServiceFactory.h.
|
overridepure virtual |
Returns a service object for a caller.
The framework invokes this method for each caller requesting a service object using ServiceObjects::GetService(). The factory can then return a specific service object for the caller. The framework checks that the returned service object is valid. If the returned service object is empty or does not contain entries for all the interfaces named when the service was registered, a warning is issued and nullptr is returned to the caller. If this method throws an exception, a warning is issued and nullptr is returned to the caller.
module | The module requesting the service. |
registration | The ServiceRegistrationBase object for the requested service. |
Implements us::ServiceFactory.
|
overridepure virtual |
Releases a service object created for a caller.
The framework invokes this method when a service has been released by a modules such as by calling ServiceObjects::UngetService(). The service object may then be destroyed. If this method throws an exception, a warning is issued.
module | The module releasing the service. |
registration | The ServiceRegistrationBase object for the service being released. |
service | The service object returned by a previous call to the GetService method. |
Implements us::ServiceFactory.