/csharp/Anaida/IWebSocketListener.cs
# · C# · 18 lines · 13 code · 5 blank · 0 comment · 0 complexity · 8ca216ae11cab77ef08ca70eea356e56 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Anaida
- {
- public interface IWebSocketListener
- {
-
- void Onopen();
-
- void Onclose();
-
- void Onmessage(byte[] message);
-
- }
- }