implement Optional Eventing in InMemory Stores for Push and WebRTC Connections and also Groups ...
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using xModels.Interfaces;
|
||||
using xPushService.Models;
|
||||
|
||||
namespace xPushService.Interfaces
|
||||
{
|
||||
public interface IXPushConnectionStoreEvents : IXBaseStoreEvents<XPushConnectionDto, string>
|
||||
{ }
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
using xModels.Interfaces;
|
||||
using xPushService.Models;
|
||||
|
||||
namespace xPushService.Interfaces {
|
||||
public interface IXPushGroupStore : IXBaseStore<XPushGroupDto, string> { }
|
||||
namespace xPushService.Interfaces
|
||||
{
|
||||
public interface IXPushGroupStore : IXBaseStore<XPushGroupDto, string>
|
||||
{ }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using xModels.Interfaces;
|
||||
using xPushService.Models;
|
||||
|
||||
namespace xPushService.Interfaces
|
||||
{
|
||||
public interface IXPushGroupStoreEvents : IXBaseStoreEvents<XPushGroupDto, string>
|
||||
{}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using xModels.Interfaces;
|
||||
using xPushService.Models;
|
||||
|
||||
namespace xPushService.Interfaces
|
||||
{
|
||||
public interface IXWebRTCConnectionStoreEvents : IXBaseStoreEvents<XWebRTCConnectionDto, string>
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user