Repository: ignite
Updated Branches:
  refs/heads/ignite-5414 ba404af5e -> f109e74f7


IGNITE-5450 .NET: Update IDataStreamer.AllowOverwrite documentation


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e238d563
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e238d563
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e238d563

Branch: refs/heads/ignite-5414
Commit: e238d563bf374489b34e6c719d10f580e4eb7b14
Parents: 612f5ad
Author: Pavel Tupitsyn <ptupit...@apache.org>
Authored: Thu Jun 8 15:25:07 2017 +0300
Committer: Pavel Tupitsyn <ptupit...@apache.org>
Committed: Thu Jun 8 15:25:07 2017 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs    | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/e238d563/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
index d18040f..222f6c3 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Datastream/IDataStreamer.cs
@@ -86,7 +86,11 @@ namespace Apache.Ignite.Core.Datastream
         string CacheName { get; }
 
         /// <summary>
-        /// Flag value indicating that this data streamer assumes that there 
could be concurrent updates to the cache. 
+        /// Gets or sets a value indicating whether existing values can be 
overwritten by the data streamer.
+        /// Performance is better when this flag is false.
+        /// <para />
+        /// NOTE: When false, cache updates won't be propagated to cache store
+        /// (even if <see cref="SkipStore"/> is false).
         /// <para />
         /// Default is <c>false</c>.
         /// </summary>
@@ -95,6 +99,8 @@ namespace Apache.Ignite.Core.Datastream
         /// <summary>
         /// Flag indicating that write-through behavior should be disabled for 
data loading.
         /// <para />
+        /// <see cref="AllowOverwrite"/> must be true for write-through to 
work.
+        /// <para />
         /// Default is <c>false</c>.
         /// </summary>
         bool SkipStore { get; set; }

Reply via email to