Undo the disposable

integration
BlueWall 2012-04-20 14:13:32 -04:00
parent 70808d6d54
commit 040412857c
1 changed files with 1 additions and 2 deletions

View File

@ -44,14 +44,13 @@ using Ux = OpenSim.Services.IntegrationService.IUtils;
namespace OpenSim.Services.IntegrationService namespace OpenSim.Services.IntegrationService
{ {
[TypeExtensionPoint (Path="/OpenSim/IntegrationService", Name="IntegrationService")] [TypeExtensionPoint (Path="/OpenSim/IntegrationService", Name="IntegrationService")]
public interface IntegrationPlugin: IDisposable public interface IntegrationPlugin
{ {
void Init(IConfigSource PluginConfig, IHttpServer server, ServiceBase service); void Init(IConfigSource PluginConfig, IHttpServer server, ServiceBase service);
void Unload(); void Unload();
string Name { get; } string Name { get; }
string ConfigName { get; } string ConfigName { get; }
string DefaultConfig { get; } string DefaultConfig { get; }
void Dispose();
} }
// Hide the nasty stuff in here, let the IntegrationService be clean for // Hide the nasty stuff in here, let the IntegrationService be clean for