blob: 5422d6f89fbcb0aee6cd73fcdffb0b5bc47bcd9c [file] [log] [blame]
/*
* Licensed 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.
*/
namespace DotPulsar
{
/// <summary>
/// The consumer building options.
/// </summary>
public sealed class ConsumerOptions
{
internal const SubscriptionInitialPosition DefaultInitialPosition = SubscriptionInitialPosition.Latest;
internal const uint DefaultMessagePrefetchCount = 1000;
internal const int DefaultPriorityLevel = 0;
internal const bool DefaultReadCompacted = false;
internal const SubscriptionType DefaultSubscriptionType = SubscriptionType.Exclusive;
public ConsumerOptions(string subscriptionName, string topic)
{
InitialPosition = DefaultInitialPosition;
PriorityLevel = DefaultPriorityLevel;
MessagePrefetchCount = DefaultMessagePrefetchCount;
ReadCompacted = DefaultReadCompacted;
SubscriptionType = DefaultSubscriptionType;
SubscriptionName = subscriptionName;
Topic = topic;
}
/// <summary>
/// Set the consumer name. This is optional.
/// </summary>
public string? ConsumerName { get; set; }
/// <summary>
/// Set initial position for the subscription. The default is 'Latest'.
/// </summary>
public SubscriptionInitialPosition InitialPosition { get; set; }
/// <summary>
/// Set the priority level for the shared subscription consumer. The default is 0.
/// </summary>
public int PriorityLevel { get; set; }
/// <summary>
/// Number of messages that will be prefetched. The default is 1000.
/// </summary>
public uint MessagePrefetchCount { get; set; }
/// <summary>
/// Whether to read from the compacted topic. The default is 'false'.
/// </summary>
public bool ReadCompacted { get; set; }
/// <summary>
/// Set the subscription name for this consumer. This is required.
/// </summary>
public string SubscriptionName { get; set; }
/// <summary>
/// Set the subscription type for this consumer. The default is 'Exclusive'.
/// </summary>
public SubscriptionType SubscriptionType { get; set; }
/// <summary>
/// Set the topic for this consumer. This is required.
/// </summary>
public string Topic { get; set; }
}
}