28 lines
630 B
C#
28 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
namespace Microsoft.AspNetCore.Sockets
|
|
{
|
|
public class SocketsApplicationLifetimeService : IHostedService
|
|
{
|
|
private readonly ConnectionManager _connectionManager;
|
|
|
|
public SocketsApplicationLifetimeService(ConnectionManager connectionManager)
|
|
{
|
|
_connectionManager = connectionManager;
|
|
}
|
|
|
|
public void Start()
|
|
{
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
_connectionManager.CloseConnections();
|
|
}
|
|
}
|
|
}
|