MediaWiki
1.30.0
|
DestructibleService defines a standard interface for shutting down a service instance. More...
Public Member Functions | |
destroy () | |
Notifies the service object that it should expect to no longer be used, and should release any system resources it may own. More... | |
DestructibleService defines a standard interface for shutting down a service instance.
The intended use is for a service container to be able to shut down services that should no longer be used, and allow such services to release any system resources.
Definition at line 35 of file DestructibleService.php.
MediaWiki\Services\DestructibleService::destroy | ( | ) |
Notifies the service object that it should expect to no longer be used, and should release any system resources it may own.
The behavior of all service methods becomes undefined after destroy() has been called. It is recommended that implementing classes should throw an exception when service methods are accessed after destroy() has been called.
Implemented in MediaWiki\Services\ServiceContainer.