Some timeout issues
[pithos-ms-client] / trunk / Pithos.Core / IStatusNotification.cs
index 3802bb6..1f29ad7 100644 (file)
@@ -58,7 +58,7 @@ namespace Pithos.Core
         void SetPithosStatus(PithosStatus status);\r
         void SetPithosStatus(PithosStatus localSyncing, string format);\r
         //Notifier GetNotifier(Notification startNotification, Notification endNotification);\r
-        Notifier GetNotifier(string startMessage, string endMessage,params object[] args);\r
+        Notifier GetNotifier(string startMessage, string endMessage,bool isActive=true,params object[] args);\r
     }\r
 \r
     public class Notification\r
@@ -87,13 +87,13 @@ namespace Pithos.Core
     public class ProgressNotification:Notification\r
     {\r
         public string FileName { get; set; }\r
-        public int Block { get; set; }\r
+        public long Block { get; set; }\r
         public int TotalBlocks { get; set; }\r
         public long FileSize { get; set; }\r
         public string Action { get; set; }\r
         public int BlockPercentage { get; set; }\r
         \r
-        public ProgressNotification(string fileName, string action,int block, int blockPercentage,int totalBlocks, long fileSize)\r
+        public ProgressNotification(string fileName, string action, long block, int blockPercentage,int totalBlocks, long fileSize)\r
         {\r
             FileName = fileName;\r
             Block = block;\r