blob: 3d91812fa676e2749533798828f5cbc088f42cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Text;
namespace IvyBus
{
internal abstract class IvyProtocolInterface
{
void TokenStartRegexp(ushort port, string appName);
void TokenEndRegexp();
void TokenApplicationId(ushort priority, string appId);
void TokenAddBinding(IvyBindingBase bind);
void TokenDelBinding(ushort bind);
void TokenDirectMsg(ushort id, string message);
void TokenPong(string s);
void TokenPing(string s);
void TokenBye(ushort id, string message);
void TokenDie(ushort err, string message);
void TokenMsg(ushort key, string[] args);
void TokenError(ushort id, string message);
}
}
|