com.azure.spring.cloud.service.implementation.servicebus.properties.ServiceBusReceiverClientProperties Maven / Gradle / Ivy
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.spring.cloud.service.implementation.servicebus.properties;
import com.azure.messaging.servicebus.models.ServiceBusReceiveMode;
import com.azure.messaging.servicebus.models.SubQueue;
import java.time.Duration;
/**
*
*/
public interface ServiceBusReceiverClientProperties extends ServiceBusClientCommonProperties {
Boolean getSessionEnabled();
Boolean getAutoComplete();
Integer getPrefetchCount();
SubQueue getSubQueue();
ServiceBusReceiveMode getReceiveMode();
String getSubscriptionName();
Duration getMaxAutoLockRenewDuration();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy