You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2016/02/09 17:11:05 UTC

[5/5] ignite git commit: Merge remote-tracking branch 'remotes/origin/master' into ignite-2587

Merge remote-tracking branch 'remotes/origin/master' into ignite-2587


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

Branch: refs/heads/ignite-2587
Commit: dac641b4282e6195310b56dc5f184a14dae45958
Parents: ae82a23 a4d8a04
Author: sboikov <sb...@gridgain.com>
Authored: Tue Feb 9 19:10:06 2016 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Tue Feb 9 19:10:06 2016 +0300

----------------------------------------------------------------------
 .../GridCacheAtomicReferenceImpl.java           |  68 +--
 .../platform/PlatformNoopProcessor.java         |  10 +
 .../processors/platform/PlatformProcessor.java  |  20 +
 .../platform/PlatformProcessorImpl.java         |  18 +
 .../callback/PlatformCallbackUtils.java         |   1 -
 .../datastructures/PlatformAtomicReference.java | 141 +++++
 .../datastructures/PlatformAtomicSequence.java  | 122 ++++
 .../cpp/common/include/ignite/common/exports.h  |  15 +
 .../cpp/common/include/ignite/common/java.h     |  32 ++
 .../platforms/cpp/common/project/vs/module.def  |  15 +-
 modules/platforms/cpp/common/src/exports.cpp    |  52 ++
 modules/platforms/cpp/common/src/java.cpp       | 181 ++++++
 .../Apache.Ignite.Core.Tests.csproj             |   6 +
 .../DataStructures/AtomicReferenceTest.cs       | 239 ++++++++
 .../DataStructures/AtomicSequenceTest.cs        | 131 +++++
 .../Apache.Ignite.Core.Tests/FutureTest.cs      |   1 +
 .../IgniteConfigurationSectionTest.cs           |  69 +++
 .../IgniteConfigurationSerializerTest.cs        | 554 +++++++++++++++++++
 .../dotnet/Apache.Ignite.Core.Tests/app.config  |  54 ++
 .../Apache.Ignite.Core.csproj                   |  15 +
 .../Binary/IBinarySerializer.cs                 |   6 +-
 .../DataStructures/IAtomicReference.cs          |  64 +++
 .../DataStructures/IAtomicSequence.cs           |  69 +++
 .../dotnet/Apache.Ignite.Core/IIgnite.cs        |  28 +
 .../IgniteConfigurationSection.cs               |  80 +++
 .../IgniteConfigurationSection.xsd              | 281 ++++++++++
 .../dotnet/Apache.Ignite.Core/Ignition.cs       |  39 ++
 .../Impl/Common/BooleanLowerCaseConverter.cs    |  60 ++
 .../Common/IgniteConfigurationXmlSerializer.cs  | 410 ++++++++++++++
 .../Impl/Common/TypeStringConverter.cs          | 115 ++++
 .../Impl/DataStructures/AtomicReference.cs      |  92 +++
 .../Impl/DataStructures/AtomicSequence.cs       |  90 +++
 .../Impl/Events/EventTypeConverter.cs           | 133 +++++
 .../dotnet/Apache.Ignite.Core/Impl/Ignite.cs    |  50 ++
 .../Apache.Ignite.Core/Impl/IgniteProxy.cs      |  12 +
 .../Impl/Unmanaged/IgniteJniNativeMethods.cs    |  37 ++
 .../Impl/Unmanaged/UnmanagedUtils.cs            |  79 +++
 37 files changed, 3340 insertions(+), 49 deletions(-)
----------------------------------------------------------------------