summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPerf/IvyPerf.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:04:53 +0000
committerfcolin2007-02-01 10:04:53 +0000
commit428955245f6b5a388d187e7a4a33a823a192cd87 (patch)
tree133e46b440f35ed18eae0b070273f388a915a46b /CSharp/Ivy/IvyPerf/IvyPerf.cs
parentdb7f7b2859e316ec1418510ddcd0dd68650fb889 (diff)
downloadivy-csharp-428955245f6b5a388d187e7a4a33a823a192cd87.zip
ivy-csharp-428955245f6b5a388d187e7a4a33a823a192cd87.tar.gz
ivy-csharp-428955245f6b5a388d187e7a4a33a823a192cd87.tar.bz2
ivy-csharp-428955245f6b5a388d187e7a4a33a823a192cd87.tar.xz
Utilisateur : Fcolin Date : 23/06/06 Heure : 15:34 Archivé dans $/CSharp/Ivy/IvyPerf Commentaire: bug sur ajout classe de messages avant init bus (vss 12)
Diffstat (limited to 'CSharp/Ivy/IvyPerf/IvyPerf.cs')
-rw-r--r--CSharp/Ivy/IvyPerf/IvyPerf.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPerf/IvyPerf.cs b/CSharp/Ivy/IvyPerf/IvyPerf.cs
index fc40fdf..7505ca4 100644
--- a/CSharp/Ivy/IvyPerf/IvyPerf.cs
+++ b/CSharp/Ivy/IvyPerf/IvyPerf.cs
@@ -47,10 +47,10 @@ namespace IvyPerf
int timeout = 1000;
if (args.Length > 0)
timeout = int.Parse(args[0]);
+ bus = new Ivy("IvyPerf", "IvyPref ready");
bus.SentMessageFilter.Add("ping");
bus.SentMessageFilter.Add("pong");
bus.SentMessageFilter.Add("IvyPref");
- bus = new Ivy("IvyPerf", "IvyPref ready");
bus.BindingFilter += new EventHandler<IvyEventArgs>(bus_BindingFilter);
bus.AutoBinding(typeof(IvyPerf));
bus.Start(null);