summaryrefslogtreecommitdiff
path: root/Ivy/IvyEventArgs.cs
diff options
context:
space:
mode:
authorfcolin2009-10-08 13:11:25 +0000
committerfcolin2009-10-08 13:11:25 +0000
commitc463b2d4b6614e01e7bad171581362ef41c0c9b2 (patch)
tree5b70ba5ee4af8ded66f81967dda78eab5fb878f2 /Ivy/IvyEventArgs.cs
parent3e0c593975420de3fd87013d99f9a8c3a8eecf8a (diff)
downloadivy-csharp-c463b2d4b6614e01e7bad171581362ef41c0c9b2.zip
ivy-csharp-c463b2d4b6614e01e7bad171581362ef41c0c9b2.tar.gz
ivy-csharp-c463b2d4b6614e01e7bad171581362ef41c0c9b2.tar.bz2
ivy-csharp-c463b2d4b6614e01e7bad171581362ef41c0c9b2.tar.xz
correction des bug connexion concurrente
correction sur le ready message attente des deux endRegexp
Diffstat (limited to 'Ivy/IvyEventArgs.cs')
-rw-r--r--Ivy/IvyEventArgs.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ivy/IvyEventArgs.cs b/Ivy/IvyEventArgs.cs
index 279f7c4..f9f6e73 100644
--- a/Ivy/IvyEventArgs.cs
+++ b/Ivy/IvyEventArgs.cs
@@ -41,7 +41,7 @@ namespace IvyBus
/// <summary>
/// Args of Ivy generated events
/// </summary>
- public IvyEventArgs(IvyClient app, int id, string arg)
+ internal IvyEventArgs(IvyClient app, int id, string arg)
{
this.client = app;
this.id = id;
@@ -69,7 +69,7 @@ namespace IvyBus
/// <summary>
/// Arg of the Die Event
/// </summary>
- public IvyDieEventArgs(IvyClient app, int id, string arg)
+ internal IvyDieEventArgs(IvyClient app, int id, string arg)
: base(app, id, arg)
{
forceExit = true;
@@ -100,7 +100,7 @@ namespace IvyBus
/// <summary>
/// Arg for the Normal Ivy Message received
/// </summary>
- public IvyMessageEventArgs(IvyClient app, int id, string[] args)
+ internal IvyMessageEventArgs(IvyClient app, int id, string[] args)
: base( app, id, null)
{
this.arg_list = args;