up
This commit is contained in:
19
Assets/BestHTTP/SignalR/Messages/IServerMessage.cs
Normal file
19
Assets/BestHTTP/SignalR/Messages/IServerMessage.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
#if !BESTHTTP_DISABLE_SIGNALR
|
||||
|
||||
using System;
|
||||
|
||||
namespace BestHTTP.SignalR.Messages
|
||||
{
|
||||
public interface IServerMessage
|
||||
{
|
||||
MessageTypes Type { get; }
|
||||
void Parse(object data);
|
||||
}
|
||||
|
||||
public interface IHubMessage
|
||||
{
|
||||
UInt64 InvocationId { get; }
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user