Backup and Clean Push Service and implement new Structure of Push Service ...
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using xExceptions.Attributes;
|
||||
|
||||
namespace xPushService.Constants
|
||||
{
|
||||
public enum XBaseHubAction
|
||||
{
|
||||
/// <summary>
|
||||
/// new Connection Join ...
|
||||
/// </summary>
|
||||
[StringValue("NewConnection")]
|
||||
NewConnection,
|
||||
/// <summary>
|
||||
/// an Exists Connection Closed ...
|
||||
/// </summary>
|
||||
[StringValue("ConnectionClosed")]
|
||||
ConnectionClosed,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// All Actions in WebRTC Hubs ...
|
||||
/// </summary>
|
||||
public enum XWebRTCAction
|
||||
{
|
||||
//
|
||||
[StringValue("Offer")]
|
||||
Offer,
|
||||
|
||||
[StringValue("Answer")]
|
||||
Answer,
|
||||
|
||||
[StringValue("Candidate")]
|
||||
Candidate,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user