You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by xu...@apache.org on 2019/07/16 04:27:50 UTC

[rocketmq-client-go] branch native updated (25f4036 -> b95e887)

This is an automated email from the ASF dual-hosted git repository.

xujiang pushed a change to branch native
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-go.git.


    from 25f4036  [ISSUE #75] Add internal/route.go unit tests (#116)
     add b0162cd  add orderly consume. resolve #114
     add 0b80814  fix order bug.
     new b95e887  [ISSUE #114] Add orderly consume

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:
 consumer/consumer.go                          |  59 ++++---
 consumer/{consumer_test.go => lock.go}        |  22 ++-
 consumer/option.go                            |  22 ++-
 consumer/process_queue.go                     |  43 ++++-
 consumer/push_consumer.go                     | 241 ++++++++++++++++++++++----
 examples/consumer/{simple => orderly}/main.go |   7 +-
 examples/producer/simple/main.go              |   2 +-
 internal/client.go                            |   2 +-
 primitive/ctx.go                              |  23 +++
 primitive/message.go                          |   4 +-
 10 files changed, 347 insertions(+), 78 deletions(-)
 copy consumer/{consumer_test.go => lock.go} (71%)
 copy examples/consumer/{simple => orderly}/main.go (82%)


[rocketmq-client-go] 01/01: [ISSUE #114] Add orderly consume

Posted by xu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xujiang pushed a commit to branch native
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-go.git

commit b95e8876d93082ba1147ef4ba61dccd1c4ae940a
Merge: 25f4036 0b80814
Author: jonnxu <jo...@163.com>
AuthorDate: Tue Jul 16 12:27:45 2019 +0800

    [ISSUE #114] Add orderly consume
    
    [ISSUE #114] add orderly consume. resolve #114

 consumer/consumer.go                               |  59 +++--
 .../producer/simple/main.go => consumer/lock.go    |  45 ++--
 consumer/option.go                                 |  22 +-
 consumer/process_queue.go                          |  43 +++-
 consumer/push_consumer.go                          | 241 ++++++++++++++++++---
 .../{producer/simple => consumer/orderly}/main.go  |  43 ++--
 examples/producer/simple/main.go                   |   2 +-
 internal/client.go                                 |   2 +-
 primitive/ctx.go                                   |  23 ++
 primitive/message.go                               |   4 +-
 10 files changed, 361 insertions(+), 123 deletions(-)