2018-03-20 21:00:00 +01:00
|
|
|
using Ryujinx.Core.OsHle.Services;
|
2018-03-19 19:58:46 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
|
|
|
{
|
|
|
|
class KSession : IDisposable
|
|
|
|
{
|
|
|
|
public IpcService Service { get; private set; }
|
|
|
|
|
2018-04-06 07:38:59 +02:00
|
|
|
public string ServiceName { get; private set; }
|
|
|
|
|
|
|
|
public KSession(IpcService Service, string ServiceName)
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
2018-04-06 07:38:59 +02:00
|
|
|
this.Service = Service;
|
|
|
|
this.ServiceName = ServiceName;
|
2018-03-19 19:58:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing && Service is IDisposable DisposableService)
|
|
|
|
{
|
|
|
|
DisposableService.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|