[02/19] ignite git commit: WIP.

2018-12-25 Thread vozerov
WIP.


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

Branch: refs/heads/ignite-10759-1
Commit: 7358f5a59c6041593db6e00c597399fcbc58f623
Parents: 35586e3
Author: devozerov 
Authored: Fri Dec 21 16:07:58 2018 +0300
Committer: devozerov 
Committed: Fri Dec 21 16:07:58 2018 +0300

--
 .../internal/processors/query/h2/opt/GridH2IndexBase.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ignite/blob/7358f5a5/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
--
diff --git 
a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
 
b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
index 826be36..ea9b881 100644
--- 
a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
+++ 
b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2IndexBase.java
@@ -797,12 +797,12 @@ public abstract class GridH2IndexBase extends BaseIndex {
 /**
  * Simple cursor from a single node.
  */
-private static class UnicastCursor implements Cursor {
+public static class UnicastCursor implements Cursor {
 /** */
-final int rangeId;
+private final int rangeId;
 
 /** */
-RangeStream stream;
+private final RangeStream stream;
 
 /**
  * @param rangeId Range ID.



[02/19] ignite git commit: wip

2015-12-08 Thread vozerov
wip


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

Branch: refs/heads/ignite-1694
Commit: e4290506e38a0e47077fb6aa7af6a0744340ec5c
Parents: 7966a36
Author: Pavel Tupitsyn 
Authored: Wed Nov 11 17:49:10 2015 +0300
Committer: Pavel Tupitsyn 
Committed: Wed Nov 11 17:49:10 2015 +0300

--
 .../Impl/Unmanaged/UnmanagedUtils.cs| 655 +++
 1 file changed, 108 insertions(+), 547 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ignite/blob/e4290506/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedUtils.cs
--
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedUtils.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedUtils.cs
index 63ba30a..f0b3f4c 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedUtils.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedUtils.cs
@@ -19,10 +19,8 @@ namespace Apache.Ignite.Core.Impl.Unmanaged
 {
 using System;
 using System.Diagnostics.CodeAnalysis;
-using System.Globalization;
 using System.Runtime.InteropServices;
 using Apache.Ignite.Core.Common;
-using Apache.Ignite.Core.Impl.Common;
 
 /// 
 /// Unmanaged utility classes.
@@ -32,409 +30,119 @@ namespace Apache.Ignite.Core.Impl.Unmanaged
 /** Interop factory ID for .Net. */
 private const int InteropFactoryId = 1;
 
-#region PROCEDURE NAMES
-
-private const string ProcReallocate = "IgniteReallocate";
-
-private const string ProcIgnitionStart = "IgniteIgnitionStart";
-private const string ProcIgnitionStop = "IgniteIgnitionStop";
-private const string ProcIgnitionStopAll = "IgniteIgnitionStopAll";
-
-private const string ProcProcessorReleaseStart = 
"IgniteProcessorReleaseStart";
-private const string ProcProcessorProjection = 
"IgniteProcessorProjection";
-private const string ProcProcessorCache = "IgniteProcessorCache";
-private const string ProcProcessorGetOrCreateCache = 
"IgniteProcessorGetOrCreateCache";
-private const string ProcProcessorCreateCache = 
"IgniteProcessorCreateCache";
-private const string ProcProcessorAffinity = "IgniteProcessorAffinity";
-private const string ProcProcessorDataStreamer = 
"IgniteProcessorDataStreamer";
-private const string ProcProcessorTransactions = 
"IgniteProcessorTransactions";
-private const string ProcProcessorCompute = "IgniteProcessorCompute";
-private const string ProcProcessorMessage = "IgniteProcessorMessage";
-private const string ProcProcessorEvents = "IgniteProcessorEvents";
-private const string ProcProcessorServices = "IgniteProcessorServices";
-private const string ProcProcessorExtensions = 
"IgniteProcessorExtensions";
-private const string ProcProcessorAtomicLong = 
"IgniteProcessorAtomicLong";
-
-private const string ProcTargetInStreamOutLong = 
"IgniteTargetInStreamOutLong";
-private const string ProcTargetInStreamOutStream = 
"IgniteTargetInStreamOutStream";
-private const string ProcTargetInStreamOutObject = 
"IgniteTargetInStreamOutObject";
-private const string ProcTargetInObjectStreamOutStream = 
"IgniteTargetInObjectStreamOutStream";
-private const string ProcTargetOutLong = "IgniteTargetOutLong";
-private const string ProcTargetOutStream = "IgniteTargetOutStream";
-private const string ProcTargetOutObject = "IgniteTargetOutObject";
-private const string ProcTargetListenFut = "IgniteTargetListenFuture";
-private const string ProcTargetListenFutForOp = 
"IgniteTargetListenFutureForOperation";
-
-private const string ProcAffinityParts = "IgniteAffinityPartitions";
-
-private const string ProcCacheWithSkipStore = 
"IgniteCacheWithSkipStore";
-private const string ProcCacheWithNoRetries = 
"IgniteCacheWithNoRetries";
-private const string ProcCacheWithExpiryPolicy = 
"IgniteCacheWithExpiryPolicy";
-private const string ProcCacheWithAsync = "IgniteCacheWithAsync";
-private const string ProcCacheWithKeepBinary = 
"IgniteCacheWithKeepPortable";
-private const string ProcCacheClear = "IgniteCacheClear";
-private const string ProcCacheRemoveAll = "IgniteCacheRemoveAll";
-private const string ProcCacheOutOpQueryCursor = 
"IgniteCacheOutOpQueryCursor";
-private const string