The interface that manages all core, anvil and plugin services.
More...
|
IServiceContainer | CreatePluginContainer (Plugin plugin) |
| Invoked by the plugin manager when loading an isolated plugin. Creates a new isolated container for the plugin.
|
|
void | DisposePluginContainer (IServiceContainer container, Plugin plugin, bool immediate) |
| Invoked by the plugin manager when unloading an isolated plugin. Disposes/shutdowns plugin services.
|
|
void | Init () |
| Called during NWNX initialization. Core services should be initialized here.
|
|
void | InjectProperties (object? instance) |
| Invoked by the injection service. Implementation for services injected into an object at runtime.
|
|
void | Load () |
| Called after module load. All other anvil/plugin services should be populated in the container here.
|
|
void | Shutdown () |
| Called after the server is shut down/destroyed. Core services should be unloaded here.
|
|
void | Start () |
| Called after all services have been loaded and just before the module is ready to play. Run any last routines on all services here.
|
|
void | Unload () |
| Called before the server is shutting down/reloading. Anvil/plugin services should be unloaded here.
|
|
|
ServiceContainer | AnvilServiceContainer [get] |
| The container holding services for anvil and anvil plugins.
|
|
ServiceContainer | CoreServiceContainer [get] |
| The container holding internal core services. (logging, function hooking, etc).
|
|
|
Action< IServiceContainer, Plugin?> | OnContainerCreate |
| Called when a service container is created.
|
|
Action< IServiceContainer, Plugin?, bool > | OnContainerDispose |
| Called when a service container is about to be disposed.
|
|
Action< IServiceContainer, Plugin?> | OnContainerPostDispose |
| Called when a service container has been disposed.
|
|
The interface that manages all core, anvil and plugin services.
◆ CreatePluginContainer()
IServiceContainer Anvil.Services.IServiceManager.CreatePluginContainer |
( |
Plugin | plugin | ) |
|
Invoked by the plugin manager when loading an isolated plugin. Creates a new isolated container for the plugin.
- Parameters
-
plugin | The types to be registered with the container |
- Returns
- The created container.
◆ DisposePluginContainer()
void Anvil.Services.IServiceManager.DisposePluginContainer |
( |
IServiceContainer | container, |
|
|
Plugin | plugin, |
|
|
bool | immediate ) |
Invoked by the plugin manager when unloading an isolated plugin. Disposes/shutdowns plugin services.
- Parameters
-
container | The container to dispose. |
plugin | The plugin owning this container. |
immediate | If the plugin container should complete dispose immediately (true) or at the end of the current frame (false) |
◆ InjectProperties()
void Anvil.Services.IServiceManager.InjectProperties |
( |
object? | instance | ) |
|
Invoked by the injection service. Implementation for services injected into an object at runtime.
- Parameters
-
instance | The instance to inject. |
The documentation for this interface was generated from the following file:
- NWN.Anvil/src/main/Services/Services/IServiceManager.cs