You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ma...@apache.org on 2019/08/06 04:35:22 UTC

[pulsar-client-node] 07/45: Merge pull request #1 from k2la/provide_nodejs_client

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

massakam pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-node.git

commit 2f977b959c0b5013987a77b9a4ce6d3d79c2c14c
Merge: 060a662 987578e
Author: Matteo Merli <mm...@apache.org>
AuthorDate: Tue Mar 12 09:34:05 2019 -0700

    Merge pull request #1 from k2la/provide_nodejs_client
    
    Provide Node Client Library

 .clang-format         |   25 +
 .eslintrc.json        |    9 +
 .gitignore            |    3 +
 Gruntfile.js          |   31 +
 README.md             |   56 +-
 binding.gyp           |   42 +
 examples/consumer.js  |   45 +
 examples/producer.js  |   49 +
 index.js              |   28 +
 package-lock.json     | 2762 +++++++++++++++++++++++++++++++++++++++++++++++++
 package.json          |   46 +
 perf/perf_consumer.js |  103 ++
 perf/perf_producer.js |  119 +++
 src/Client.cc         |  170 +++
 src/Client.h          |   41 +
 src/Consumer.cc       |  183 ++++
 src/Consumer.h        |   44 +
 src/ConsumerConfig.cc |  105 ++
 src/ConsumerConfig.h  |   44 +
 src/Message.cc        |  197 ++++
 src/Message.h         |   64 ++
 src/MessageId.cc      |   87 ++
 src/MessageId.h       |   46 +
 src/Producer.cc       |  151 +++
 src/Producer.h        |   42 +
 src/ProducerConfig.cc |  158 +++
 src/ProducerConfig.h  |   38 +
 src/addon.cc          |   35 +
 28 files changed, 4722 insertions(+), 1 deletion(-)