/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; namespace Apache.NMS { public interface IRedeliveryPolicy : ICloneable { /// /// Gets or sets the collision avoidance percent. This causes the redelivery delay /// to be adjusted in order to avoid possible collision when messages are redelivered /// to concurrent consumers. /// /// The collision avoidance factor. int CollisionAvoidancePercent{ get; set; } /// /// Gets or sets a value indicating whether to [use collision avoidance]. /// /// /// true if [use collision avoidance]; otherwise, false. /// bool UseCollisionAvoidance{ get; set; } /// /// The time in milliseconds to initially delay a redelivery /// /// The initial redelivery delay. int InitialRedeliveryDelay{ get; set; } /// /// Gets or sets the maximum redeliveries. A value less than zero indicates /// that there is no maximum and the NMS provider should retry forever. /// /// The maximum redeliveries. int MaximumRedeliveries{ get; set; } /// /// The time in milliseconds to delay a redelivery /// /// The redelivered counter. /// int RedeliveryDelay(int redeliveredCounter); /// /// Gets or sets a value indicating whether [use exponential back off]. /// /// /// true if [use exponential back off]; otherwise, false. /// bool UseExponentialBackOff{ get; set; } /// /// Gets or sets the back off multiplier. /// /// The back off multiplier. int BackOffMultiplier{ get; set; } } }