30 lines
709 B
C#
30 lines
709 B
C#
using xPushService.Base;
|
|
using xPushService.Interfaces;
|
|
using xPushService.Models;
|
|
|
|
namespace xWebinarService.Hub
|
|
{
|
|
public class XWebinarHub : XBaseWebRTCHub
|
|
{
|
|
protected XWebinarHub(
|
|
IXPushGroupStore groupStore,
|
|
IXPushConnectionStore connectionStore,
|
|
IXWebRTCConnectionStore webRTCConnectionStore
|
|
) : base(
|
|
groupStore,
|
|
connectionStore,
|
|
webRTCConnectionStore
|
|
)
|
|
{ }
|
|
|
|
public override XPushConnectionDto GetConnection()
|
|
{
|
|
//
|
|
var result = GetBaseConnection();
|
|
result.Type = GetType().Name;
|
|
|
|
//
|
|
return result;
|
|
}
|
|
}
|
|
} |