From 63fb62eb6b142025408b8218d7155b59102a6d40 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 10:01:22 +0000 Subject: Utilisateur : Fcolin Date : 8/12/05 Heure : 11:39 Créé Commentaire: (vss 1) --- CSharp/Ivy/IvyPPC/IvyProtocol.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 CSharp/Ivy/IvyPPC/IvyProtocol.cs diff --git a/CSharp/Ivy/IvyPPC/IvyProtocol.cs b/CSharp/Ivy/IvyPPC/IvyProtocol.cs new file mode 100644 index 0000000..1530558 --- /dev/null +++ b/CSharp/Ivy/IvyPPC/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); + + } +} -- cgit v1.1