This is an automated email from the ASF dual-hosted git repository.
lizhanhui pushed a change to branch cpp_dev
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git
discard 8a1373b Merge changes from upstream
omit 628a2e9 Sync client settings every 5 minutes
add f6fdbbd Sync client settings every 5 minutes (#59)
add ab9353d Bump jacoco to 0.8.8 (#62)
add aaad80d Merge changes from upstream (#61)
add 3cb7fbe Add new label(consumerGroup) for the metrics of consumer (#63)
add 8202ef8 Do not check body size in MessageBuilderImpl#setBody (#64)
new b1d383a Prepare to sync examples
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 (8a1373b)
\
N -- N -- N refs/heads/cpp_dev (b1d383a)
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:
.gitignore | 3 +
cpp/bazel/rocketmq_deps.bzl | 189 ++++----
cpp/examples/BUILD.bazel | 31 +-
cpp/examples/BenchmarkPushConsumer.cpp | 83 ----
cpp/examples/ExampleProducer.cpp | 21 +-
cpp/examples/PushConsumerWithCustomExecutor.cpp | 147 ------
cpp/examples/PushConsumerWithThrottle.cpp | 88 ----
cpp/source/rocketmq/ConsumeTask.cpp | 8 +-
cpp/source/rocketmq/SendContext.cpp | 4 +-
cpp/source/stats/Tag.cpp | 7 +-
cpp/source/stats/include/Tag.h | 4 +-
csharp/rocketmq-client-csharp/Address.cs | 35 --
csharp/rocketmq-client-csharp/AddressScheme.cs | 23 -
csharp/rocketmq-client-csharp/Broker.cs | 77 ---
.../rocketmq-client-csharp/INameServerResolver.cs | 27 --
csharp/rocketmq-client-csharp/Partition.cs | 85 ----
csharp/rocketmq-client-csharp/Permission.cs | 23 -
.../Protos/apache/rocketmq/v1/admin.proto | 45 --
.../Protos/apache/rocketmq/v1/definition.proto | 351 --------------
.../Protos/apache/rocketmq/v1/service.proto | 522 ---------------------
csharp/rocketmq-client-csharp/SendResult.cs | 41 --
csharp/rocketmq-client-csharp/ServiceAddress.cs | 39 --
.../StaticNameServerResolver.cs | 38 --
csharp/tests/BrokerTest.cs | 38 --
csharp/tests/StaticNameServerResolverTest.cs | 35 --
.../client/java/message/MessageBuilderImpl.java | 3 -
java/pom.xml | 2 +-
27 files changed, 134 insertions(+), 1835 deletions(-)
delete mode 100644 cpp/examples/BenchmarkPushConsumer.cpp
delete mode 100644 cpp/examples/PushConsumerWithCustomExecutor.cpp
delete mode 100644 cpp/examples/PushConsumerWithThrottle.cpp
delete mode 100644 csharp/rocketmq-client-csharp/Address.cs
delete mode 100644 csharp/rocketmq-client-csharp/AddressScheme.cs
delete mode 100644 csharp/rocketmq-client-csharp/Broker.cs
delete mode 100644 csharp/rocketmq-client-csharp/INameServerResolver.cs
delete mode 100644 csharp/rocketmq-client-csharp/Partition.cs
delete mode 100644 csharp/rocketmq-client-csharp/Permission.cs
delete mode 100644
csharp/rocketmq-client-csharp/Protos/apache/rocketmq/v1/admin.proto
delete mode 100644
csharp/rocketmq-client-csharp/Protos/apache/rocketmq/v1/definition.proto
delete mode 100644
csharp/rocketmq-client-csharp/Protos/apache/rocketmq/v1/service.proto
delete mode 100644 csharp/rocketmq-client-csharp/SendResult.cs
delete mode 100644 csharp/rocketmq-client-csharp/ServiceAddress.cs
delete mode 100644 csharp/rocketmq-client-csharp/StaticNameServerResolver.cs
delete mode 100644 csharp/tests/BrokerTest.cs
delete mode 100644 csharp/tests/StaticNameServerResolverTest.cs