summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyProtocol.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 11:59:19 +0000
committerfcolin2007-02-01 11:59:19 +0000
commit31a4ba441a313dca7821cae97378ac77b90068cc (patch)
tree0a1ce34e3217d3810cff6d86c8d7e215b783975c /CSharp/Ivy/IvyPPC/IvyProtocol.cs
parentcbf21e890ed2df9dc964bd017b48da8e94e2c608 (diff)
downloadivy-csharp-31a4ba441a313dca7821cae97378ac77b90068cc.zip
ivy-csharp-31a4ba441a313dca7821cae97378ac77b90068cc.tar.gz
ivy-csharp-31a4ba441a313dca7821cae97378ac77b90068cc.tar.bz2
ivy-csharp-31a4ba441a313dca7821cae97378ac77b90068cc.tar.xz
suppression niveaux
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyProtocol.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyProtocol.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyProtocol.cs b/CSharp/Ivy/IvyPPC/IvyProtocol.cs
deleted file mode 100644
index 1b1f3aa..0000000
--- a/CSharp/Ivy/IvyPPC/IvyProtocol.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Text;
-
-namespace IvyBus
-{
- public enum BindingType { Regexp, Simple };
-
- internal interface IvyProtocol
- {
- void Close();
- bool receiveMsg();
- void TokenStartRegexp(ushort port, string appName);
- void TokenEndRegexp();
- void TokenApplicationId(ushort priority, string appId);
- void TokenAddBinding(BindingType type, ushort id, string expression);
- 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);
- }
-}