|
| 1 | +/** |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + * or more contributor license agreements. See the NOTICE file |
| 4 | + * distributed with this work for additional information |
| 5 | + * regarding copyright ownership. The ASF licenses this file |
| 6 | + * to you under the Apache License, Version 2.0 (the |
| 7 | + * "License"); you may not use this file except in compliance |
| 8 | + * with the License. You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, |
| 13 | + * software distributed under the License is distributed on an |
| 14 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + * KIND, either express or implied. See the License for the |
| 16 | + * specific language governing permissions and limitations |
| 17 | + * under the License. |
| 18 | + */ |
| 19 | +#ifndef DEAD_LETTER_POLICY_BUILD_HPP_ |
| 20 | +#define DEAD_LETTER_POLICY_BUILD_HPP_ |
| 21 | + |
| 22 | +#include <pulsar/DeadLetterPolicy.h> |
| 23 | +#include <pulsar/defines.h> |
| 24 | + |
| 25 | +#include <memory> |
| 26 | + |
| 27 | +namespace pulsar { |
| 28 | + |
| 29 | +struct DeadLetterPolicyImpl; |
| 30 | + |
| 31 | +/** |
| 32 | + * The builder to build a DeadLetterPolicyBuilder |
| 33 | + * |
| 34 | + * Example of building DeadLetterPolicy: |
| 35 | + * |
| 36 | + * ```c++ |
| 37 | + * DeadLetterPolicy dlqPolicy = DeadLetterPolicyBuilder() |
| 38 | + * .deadLetterTopic("dlq-topic") |
| 39 | + * .maxRedeliverCount(10) |
| 40 | + * .initialSubscriptionName("init-sub-name") |
| 41 | + * .build(); |
| 42 | + * ``` |
| 43 | + */ |
| 44 | +class PULSAR_PUBLIC DeadLetterPolicyBuilder { |
| 45 | + public: |
| 46 | + DeadLetterPolicyBuilder(); |
| 47 | + |
| 48 | + /** |
| 49 | + * Set dead letter topic |
| 50 | + * |
| 51 | + * @return |
| 52 | + */ |
| 53 | + DeadLetterPolicyBuilder& deadLetterTopic(const std::string& deadLetterTopic); |
| 54 | + |
| 55 | + /** |
| 56 | + * Set max redeliver count |
| 57 | + * |
| 58 | + * @return |
| 59 | + */ |
| 60 | + DeadLetterPolicyBuilder& maxRedeliverCount(int maxRedeliverCount); |
| 61 | + |
| 62 | + /** |
| 63 | + * Set initial subscription name |
| 64 | + * |
| 65 | + * @return |
| 66 | + */ |
| 67 | + DeadLetterPolicyBuilder& initialSubscriptionName(const std::string& initialSubscriptionName); |
| 68 | + |
| 69 | + /** |
| 70 | + * Build DeadLetterPolicy. |
| 71 | + * |
| 72 | + * @return |
| 73 | + */ |
| 74 | + DeadLetterPolicy build(); |
| 75 | + |
| 76 | + private: |
| 77 | + std::shared_ptr<DeadLetterPolicyImpl> impl_; |
| 78 | +}; |
| 79 | +} // namespace pulsar |
| 80 | + |
| 81 | +#endif /* DEAD_LETTER_POLICY_BUILD_HPP_ */ |
0 commit comments