This is an automated email from the ASF dual-hosted git repository.
agura pushed a change to branch ignite-14198
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.
discard d567d36 IGNITE-14198 Removed lexicographic comparator.
discard 32e69ed IGNITE-14198 Added javadocs for conditions and updates.
discard a2de9dd IGNITE-14918 Meta storage interface: batch operations,
watches, conditional updates
discard 08a9ea8 IGNITE-14198 Client interface for metastorage.
add 81921cb IGNITE-14182 Implemented naming list configuration elements
removal. (#58)
add 9b04fe5 IGNITE-14232 Fixed tests with ANSI on Cygwin and Git Bash #57
add d50c84c IGNITE-14279 "sendWithResponse" introduced to NetworkCluster
interface.
add edf04a7 IGNITE-14276 Local maven build runs tests while they are
switched off by skipTests option. Fixes #60
new 53ae51e IGNITE-14198 Meta storage client interface
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (d567d36)
\
N -- N -- N refs/heads/ignite-14198 (53ae51e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/ignite/cli/IgniteCliInterfaceTest.java | 147 ++++++++++++---------
.../org/apache/ignite/cli/ui/ProgressBarTest.java | 7 +-
.../processor/internal/Processor.java | 79 ++++++-----
.../configuration/processor/internal/Utils.java | 9 ++
.../ignite/configuration/sample/UsageTest.java | 7 +
.../sample/storage/TestConfigurationStorage.java | 11 +-
.../ignite/configuration/ConfigurationChanger.java | 39 +++++-
...nfigurator.java => NamedConfigurationTree.java} | 31 ++---
.../configuration/annotation/NamedConfigValue.java | 2 -
.../ignite/configuration/annotation/Value.java | 2 +-
.../configuration/internal/ConfigurationNode.java | 4 +-
.../internal/DynamicConfiguration.java | 14 +-
.../configuration/internal/DynamicProperty.java | 12 +-
.../ignite/configuration/internal/NamedList.java | 44 ------
.../internal/NamedListConfiguration.java | 18 ++-
.../internal/util/ConfigurationUtil.java | 122 +++++++++++++----
.../org/apache/ignite/metastorage/Example.java | 56 --------
.../metastorage/client/MetaStorageService.java | 71 ++++------
.../ignite/metastorage/client/package-info.java | 2 +-
.../ignite/metastorage/common/Condition.java | 127 +++++++++++++++---
.../apache/ignite/metastorage/common/Cursor.java | 10 ++
.../common/{Update.java => Operation.java} | 38 +++---
.../common/{Updates.java => Operations.java} | 34 ++---
.../common/{Conditions.java => WatchEvent.java} | 41 +++---
.../ignite/metastorage/common/WatchListener.java} | 25 ++--
.../ignite/metastorage/common/package-info.java | 2 +-
.../ITScaleCubeNetworkClusterMessagingTest.java | 2 +
.../org/apache/ignite/network/NetworkCluster.java | 15 ++-
.../network/scalecube/ScaleCubeNetworkCluster.java | 20 +--
parent/pom.xml | 25 +++-
30 files changed, 594 insertions(+), 422 deletions(-)
rename
modules/configuration/src/main/java/org/apache/ignite/configuration/{PublicConfigurator.java
=> NamedConfigurationTree.java} (54%)
delete mode 100644
modules/configuration/src/main/java/org/apache/ignite/configuration/internal/NamedList.java
delete mode 100644
modules/metastorage-client/src/main/java/org/apache/ignite/metastorage/Example.java
create mode 100644
modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/Cursor.java
rename
modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/{Update.java
=> Operation.java} (61%)
rename
modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/{Updates.java
=> Operations.java} (52%)
copy
modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/{Conditions.java
=> WatchEvent.java} (56%)
copy
modules/{network/src/main/java/org/apache/ignite/network/NetworkClusterEventHandler.java
=>
metastorage-common/src/main/java/org/apache/ignite/metastorage/common/WatchListener.java}
(54%)