Anvil
Loading...
Searching...
No Matches
Anvil.Services.IServiceManager Interface Reference

The interface that manages all core, anvil and plugin services. More...

Public Member Functions

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.
 

Properties

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).
 

Events

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.
 

Detailed Description

The interface that manages all core, anvil and plugin services.

Member Function Documentation

◆ 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
pluginThe 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
containerThe container to dispose.
pluginThe plugin owning this container.
immediateIf 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
instanceThe instance to inject.

The documentation for this interface was generated from the following file: