17 lines
408 B
C#
17 lines
408 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Squirrowse.Service.Hubs
|
|||
|
{
|
|||
|
public interface IStreamManager
|
|||
|
{
|
|||
|
Task AddUser(string connectionId, string agentName);
|
|||
|
Task RemoveUserbyConnectionId(string connectionId);
|
|||
|
Task RemoveUserByUserName(string agentName);
|
|||
|
bool CheckUser(string agentName);
|
|||
|
|
|||
|
}
|
|||
|
}
|