rocketmq_client_rust/consumer.rs
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17pub(crate) mod ack_callback;
18pub(crate) mod ack_result;
19pub(crate) mod ack_status;
20pub mod allocate_message_queue_strategy;
21pub(crate) mod consumer_impl;
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(crate) mod pop_callback;
33pub(crate) mod pop_result;
34pub(crate) 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;