You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2015/12/18 13:42:26 UTC

[13/13] ignite git commit: Merge remote-tracking branch 'remotes/origin/ignite-1.5' into ignite-1.5.1-2

Merge remote-tracking branch 'remotes/origin/ignite-1.5' into ignite-1.5.1-2


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

Branch: refs/heads/ignite-1.5.1-2
Commit: 0482316e413661a3fb1bd15bab15c2a1e48cc294
Parents: 206e5a5 bda0b19
Author: Anton Vinogradov <av...@apache.org>
Authored: Fri Dec 18 15:40:57 2015 +0300
Committer: Anton Vinogradov <av...@apache.org>
Committed: Fri Dec 18 15:40:57 2015 +0300

----------------------------------------------------------------------
 RELEASE_NOTES.txt                               |   1 +
 .../hibernate/CacheHibernateStoreExample.java   |   8 +
 .../datagrid/store/hibernate/Person.hbm.xml     |   6 +-
 .../datagrid/store/hibernate/hibernate.cfg.xml  |   7 +-
 ...ComputeClientBinaryTaskExecutionExample.java |   4 +-
 .../CacheClientBinaryPutGetExample.java         |   6 +-
 .../datagrid/CacheClientBinaryQueryExample.java |  10 +-
 .../datagrid/CacheEntryProcessorExample.java    | 157 +++++++++++++
 .../examples/datagrid/CacheQueryExample.java    |   4 +-
 .../store/spring/CacheSpringPersonStore.java    | 118 ++++++++++
 .../store/spring/CacheSpringStoreExample.java   | 155 +++++++++++++
 .../datagrid/store/spring/package-info.java     |  22 ++
 .../apache/ignite/examples/model/Address.java   |  72 ++++++
 .../apache/ignite/examples/model/Employee.java  |  93 ++++++++
 .../ignite/examples/model/EmployeeKey.java      |  93 ++++++++
 .../ignite/examples/model/Organization.java     |  85 ++++++-
 .../ignite/examples/model/OrganizationType.java |  32 +++
 .../apache/ignite/examples/model/Person.java    |   2 +-
 .../ignite/examples/model/binary/Address.java   |  72 ------
 .../ignite/examples/model/binary/Employee.java  |  93 --------
 .../examples/model/binary/EmployeeKey.java      |  93 --------
 .../examples/model/binary/Organization.java     |  93 --------
 .../examples/model/binary/OrganizationType.java |  32 ---
 .../ignite/examples/model/package-info.java     |  23 ++
 .../datagrid/CacheEntryProcessorExample.java    | 147 ++++++++++++
 .../ScalarCacheEntryProcessorExample.scala      | 125 ++++++++++
 .../ignite/examples/CacheExamplesSelfTest.java  |   8 +
 .../java8/examples/CacheExamplesSelfTest.java   |   8 +
 .../tests/examples/ScalarExamplesSelfTest.scala |   5 +
 .../ClientAbstractConnectivitySelfTest.java     |   2 +-
 .../internal/binary/BinaryClassDescriptor.java  |   5 +-
 .../ignite/internal/binary/BinaryContext.java   |  16 +-
 .../ignite/internal/binary/BinaryWriteMode.java |   3 +
 .../internal/cluster/ClusterGroupAdapter.java   |  10 +-
 .../processors/cache/CacheEntryImpl.java        |   6 +-
 .../processors/cache/CacheEntryImplEx.java      |  17 +-
 .../dht/preloader/GridDhtPreloader.java         |   2 +-
 .../processors/task/GridTaskWorker.java         |   8 +-
 .../internal/util/lang/GridNodePredicate.java   |  13 +-
 .../ignite/internal/util/nio/GridNioServer.java |  11 +-
 .../util/nio/GridSelectorNioSessionImpl.java    |   7 +
 .../TcpDiscoveryMulticastIpFinder.java          |  12 +-
 .../ignite/internal/ClusterGroupSelfTest.java   |  32 ++-
 .../IgniteClientReconnectCacheTest.java         |   7 +-
 .../ignite/internal/TaskNodeRestartTest.java    | 230 +++++++++++++++++++
 ...IgniteCacheBinaryEntryProcessorSelfTest.java |   4 +-
 .../CacheGetInsideLockChangingTopologyTest.java |   2 +
 .../IgniteCacheSizeFailoverTest.java            |   4 +-
 .../random/RandomEvictionPolicySelfTest.java    |   4 +-
 .../GridServiceProcessorStopSelfTest.java       |  18 +-
 .../IgniteMessagingWithClientTest.java          |   2 -
 .../GridSessionCheckpointAbstractSelfTest.java  |   3 +-
 .../spi/discovery/tcp/TcpDiscoverySelfTest.java |   2 +-
 .../testsuites/IgniteComputeGridTestSuite.java  |   2 +
 .../cache/BinarySerializationQuerySelfTest.java |   2 +-
 .../query/IgniteSqlSplitterSelfTest.java        |   3 +-
 .../Services/ServicesTest.cs                    |  23 +-
 57 files changed, 1567 insertions(+), 457 deletions(-)
----------------------------------------------------------------------