diff options
author | fcolin | 2007-02-01 09:49:33 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:49:33 +0000 |
commit | 21d2f0163c0c67f0701e579844f1e56d449aa4a9 (patch) | |
tree | b0b0c1d654830cca22e0a94abbe822b522a06046 /CSharp/Ivy | |
parent | ba67d978e4196568822004e088bb2364602a63e7 (diff) | |
download | ivy-csharp-21d2f0163c0c67f0701e579844f1e56d449aa4a9.zip ivy-csharp-21d2f0163c0c67f0701e579844f1e56d449aa4a9.tar.gz ivy-csharp-21d2f0163c0c67f0701e579844f1e56d449aa4a9.tar.bz2 ivy-csharp-21d2f0163c0c67f0701e579844f1e56d449aa4a9.tar.xz |
Utilisateur : Fcolin Date : 8/12/05 Heure : 11:39 Créé Commentaire: (vss 1)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r-- | CSharp/Ivy/Ivy/IvyProtocol.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/CSharp/Ivy/Ivy/IvyProtocol.cs b/CSharp/Ivy/Ivy/IvyProtocol.cs new file mode 100644 index 0000000..1530558 --- /dev/null +++ b/CSharp/Ivy/Ivy/IvyProtocol.cs @@ -0,0 +1,24 @@ +using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace IvyBus
+{
+ interface IvyProtocolInterface
+ {
+ void TokenStartRegexp(int port, string appName);
+ void TokenEndRegexp();
+ void TokenApplicationId(int priority, string appId);
+ void TokenAddBinding(int id, string regexp);
+ void TokenAddRegexp(int id, string regexp);
+ void TokenDelBinding(int bind);
+ void TokenDirectMsg(int id, IvyArgument message);
+ void TokenPong(string s);
+ void TokenPing(string s);
+ void TokenBye(int id, string message);
+ void TokenDie(int err, string message);
+ void TokenMsg(int key, IvyArgument args);
+ void TokenError(int id, string message);
+
+ }
+}
|