summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:49:33 +0000
committerfcolin2007-02-01 09:49:33 +0000
commit21d2f0163c0c67f0701e579844f1e56d449aa4a9 (patch)
treeb0b0c1d654830cca22e0a94abbe822b522a06046
parentba67d978e4196568822004e088bb2364602a63e7 (diff)
downloadivy-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)
-rw-r--r--CSharp/Ivy/Ivy/IvyProtocol.cs24
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);
+
+ }
+}