Merge remote-tracking branch 'remotes/upstream/master' into ignite-1.4
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/27cd6154 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/27cd6154 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/27cd6154 Branch: refs/heads/ignite-1349 Commit: 27cd6154747155c77e29d194d98f9ba9bf6a1455 Parents: 662bc33 6ac9557 Author: ptupitsyn <[email protected]> Authored: Thu Sep 3 11:42:30 2015 +0300 Committer: ptupitsyn <[email protected]> Committed: Thu Sep 3 11:42:30 2015 +0300 ---------------------------------------------------------------------- .../configuration/PlatformConfiguration.java | 2 +- .../apache/ignite/internal/IgniteKernal.java | 14 +- .../cache/store/CacheOsStoreManager.java | 32 +- .../cache/store/CacheStoreManager.java | 10 + .../store/GridCacheStoreManagerAdapter.java | 5 - .../platform/PlatformNoopProcessor.java | 11 +- .../processors/platform/PlatformProcessor.java | 10 + .../cache/store/PlatformCacheStore.java | 25 + ...processors.platform.PlatformBootstrapFactory | 2 + .../PlatformAbstractConfigurationClosure.java | 61 +++ .../platform/PlatformConfigurationEx.java | 48 ++ .../platform/PlatformProcessorImpl.java | 360 ++++++++++++++ .../cache/store/PlatformCacheStore.java | 25 - .../platform/cpp/PlatformCppBootstrap.java | 31 ++ .../cpp/PlatformCppBootstrapFactory.java | 39 ++ .../cpp/PlatformCppConfigurationClosure.java | 99 ++++ .../cpp/PlatformCppConfigurationEx.java | 82 +++ .../dotnet/PlatformDotNetBootstrap.java | 31 ++ .../dotnet/PlatformDotNetBootstrapFactory.java | 39 ++ .../dotnet/PlatformDotNetCacheStore.java | 497 +++++++++++++++++++ .../PlatformDotNetConfigurationClosure.java | 255 ++++++++++ .../dotnet/PlatformDotNetConfigurationEx.java | 91 ++++ .../platform/utils/PlatformUtils.java | 14 + .../platform/cpp/PlatformCppConfiguration.java | 47 ++ .../dotnet/PlatformDotNetCacheStoreFactory.java | 139 ++++++ .../dotnet/PlatformDotNetConfiguration.java | 119 +++++ .../dotnet/PlatformDotNetLifecycleBean.java | 109 ++++ .../PlatformDotNetPortableConfiguration.java | 228 +++++++++ ...PlatformDotNetPortableTypeConfiguration.java | 248 +++++++++ parent/pom.xml | 1 + 30 files changed, 2635 insertions(+), 39 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/27cd6154/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java ----------------------------------------------------------------------
