You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2015/08/24 21:22:57 UTC

[10/10] ignite git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/ignite into ignite-1281

Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/ignite into ignite-1281


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

Branch: refs/heads/ignite-1281
Commit: d1501915c430581f2e0f7d8727e3bef441ac85ea
Parents: 7845225 321b78a
Author: Alexey Goncharuk <ag...@gridgain.com>
Authored: Mon Aug 24 12:21:08 2015 -0700
Committer: Alexey Goncharuk <ag...@gridgain.com>
Committed: Mon Aug 24 12:21:08 2015 -0700

----------------------------------------------------------------------
 .../configuration/IgniteConfiguration.java      |  22 +
 .../configuration/PlatformConfiguration.java    |  25 +
 .../internal/GridEventConsumeHandler.java       |  14 +-
 .../interop/InteropAwareEventFilter.java        |  37 -
 .../internal/interop/InteropBootstrap.java      |  35 -
 .../interop/InteropBootstrapFactory.java        |  39 -
 .../internal/interop/InteropException.java      |  71 --
 .../internal/interop/InteropIgnition.java       | 186 ----
 .../interop/InteropLocalEventListener.java      |  28 -
 .../interop/InteropNoCallbackException.java     |  50 --
 .../internal/interop/InteropProcessor.java      |  39 -
 .../eventstorage/GridEventStorageManager.java   |  10 +-
 .../platform/PlatformAwareEventFilter.java      |  37 +
 .../platform/PlatformLocalEventListener.java    |  28 +
 .../cache/GridCacheEvictionManager.java         |   2 +-
 .../near/IgniteCacheNearOnlyTxTest.java         |  82 +-
 .../lru/LruNearEvictionPolicySelfTest.java      |  29 +-
 .../LruNearOnlyNearEvictionPolicySelfTest.java  |  55 +-
 modules/platform/pom.xml                        |  65 ++
 .../Apache.Ignite.Core.csproj                   |  47 +
 .../main/dotnet/Apache.Ignite.Core/Ignition.cs  |  23 +
 .../Properties/AssemblyInfo.cs                  |  35 +
 .../platform/src/main/dotnet/Apache.Ignite.sln  |  35 +
 .../ignite/internal/platform/Platform.java      |  39 +
 .../internal/platform/PlatformBootstrap.java    |  35 +
 .../platform/PlatformBootstrapFactory.java      |  37 +
 .../internal/platform/PlatformException.java    |  71 ++
 .../internal/platform/PlatformIgnition.java     | 186 ++++
 .../platform/PlatformNoCallbackException.java   |  50 ++
 .../callback/PlatformCallbackGateway.java       | 869 +++++++++++++++++++
 .../callback/PlatformCallbackUtils.java         | 468 ++++++++++
 .../platform/memory/PlatformAbstractMemory.java | 121 +++
 .../PlatformBigEndianInputStreamImpl.java       | 126 +++
 .../PlatformBigEndianOutputStreamImpl.java      | 162 ++++
 .../platform/memory/PlatformExternalMemory.java |  55 ++
 .../platform/memory/PlatformInputStream.java    |  30 +
 .../memory/PlatformInputStreamImpl.java         | 323 +++++++
 .../platform/memory/PlatformMemory.java         |  77 ++
 .../platform/memory/PlatformMemoryManager.java  |  46 +
 .../memory/PlatformMemoryManagerImpl.java       |  83 ++
 .../platform/memory/PlatformMemoryPool.java     | 133 +++
 .../platform/memory/PlatformMemoryUtils.java    | 468 ++++++++++
 .../platform/memory/PlatformOutputStream.java   |  30 +
 .../memory/PlatformOutputStreamImpl.java        | 259 ++++++
 .../platform/memory/PlatformPooledMemory.java   |  63 ++
 .../platform/memory/PlatformUnpooledMemory.java |  51 ++
 .../Apache.Ignite.Core.Tests.csproj             |  64 ++
 .../Apache.Ignite.Core.Tests/IgnitionTest.cs    |  30 +
 .../Properties/AssemblyInfo.cs                  |  35 +
 .../Apache.Ignite.Core.Tests/TestRunner.cs      |  70 ++
 parent/pom.xml                                  |   4 +
 pom.xml                                         |   7 +-
 52 files changed, 4455 insertions(+), 531 deletions(-)
----------------------------------------------------------------------