Skip to main content

rocketmq_client_rust/
consumer.rs

1// Copyright 2023 The RocketMQ Rust Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15pub mod ack_callback;
16pub mod ack_result;
17pub mod ack_status;
18pub mod allocate_message_queue_strategy;
19pub mod consumer_impl;
20pub mod default_lite_pull_consumer;
21pub mod default_lite_pull_consumer_builder;
22pub mod default_mq_push_consumer;
23pub mod default_mq_push_consumer_builder;
24pub mod listener;
25pub mod lite_pull_consumer;
26pub mod message_queue_listener;
27pub(crate) mod message_queue_lock;
28pub mod message_selector;
29pub mod mq_consumer;
30pub(crate) mod mq_consumer_inner;
31pub mod mq_push_consumer;
32pub mod pop_callback;
33pub mod pop_result;
34pub mod pop_status;
35pub(crate) mod pull_callback;
36pub mod pull_result;
37pub mod pull_status;
38pub mod rebalance_strategy;
39pub(crate) mod store;
40pub mod topic_message_queue_change_listener;