This is an automated email from the ASF dual-hosted git repository.
bashirbekov pushed a change to branch feat/add-background-send
in repository https://gitbox.apache.org/repos/asf/iggy.git
from 77c25b83 del
new 4aeb096c del
new 05468f8a del
The 2 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:
core/integration/Cargo.toml | 4 -
core/integration/benches/send.rs | 102 --------
.../tests/examples/test_new_publisher.rs | 71 +++---
core/sdk/src/clients/mod.rs | 5 +-
core/sdk/src/clients/producer.rs | 144 +++--------
core/sdk/src/clients/producer_builder.rs | 270 ++++++++++++++------
core/sdk/src/clients/producer_config.rs | 52 ++++
core/sdk/src/clients/producer_dispatcher.rs | 274 +++------------------
core/sdk/src/clients/producer_error_callback.rs | 70 ++++++
core/sdk/src/clients/producer_sharding.rs | 200 +++++++++++++++
.../stream_builder/build/build_iggy_producer.rs | 17 +-
.../sdk/src/stream_builder/iggy_stream_producer.rs | 3 +-
12 files changed, 649 insertions(+), 563 deletions(-)
delete mode 100644 core/integration/benches/send.rs
create mode 100644 core/sdk/src/clients/producer_config.rs
create mode 100644 core/sdk/src/clients/producer_error_callback.rs
create mode 100644 core/sdk/src/clients/producer_sharding.rs