This is an automated email from the ASF dual-hosted git repository.
xyz pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-cpp.git
from 14b0451 [fix] Handle exceptions when creating timers when fd limit is
reached (#203)
add 242ad77 [TableView-2] Implement all interfaces. (#196)
No new revisions were added by this update.
Summary of changes:
include/pulsar/Reader.h | 1 +
include/pulsar/TableView.h | 2 +-
lib/Client.cc | 14 +++
lib/ClientImpl.cc | 28 ++++++
lib/ClientImpl.h | 6 ++
lib/MultiTopicsConsumerImpl.cc | 2 +-
lib/SynchronizedHashMap.h | 1 -
lib/TableView.cc | 97 ++++++++++++++++++
lib/TableViewImpl.cc | 170 +++++++++++++++++++++++++++++++
lib/TableViewImpl.h | 86 ++++++++++++++++
tests/PulsarFriend.h | 6 ++
tests/TableViewTest.cc | 224 +++++++++++++++++++++++++++++++++++++++++
12 files changed, 634 insertions(+), 3 deletions(-)
create mode 100644 lib/TableView.cc
create mode 100644 lib/TableViewImpl.cc
create mode 100644 lib/TableViewImpl.h
create mode 100644 tests/TableViewTest.cc