All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.eventprocessorhost.AzureStoragePartitionManagerOptions Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.microsoft.azure.eventprocessorhost;

public final class AzureStoragePartitionManagerOptions extends PartitionManagerOptions {
    public AzureStoragePartitionManagerOptions() {
    }

    @Override
    public void setLeaseDurationInSeconds(int duration) {
        // Max Azure Storage blob lease is 60 seconds
        if (duration > 60) {
            throw new IllegalArgumentException("Lease duration cannot be more than 60 seconds");
        }
        super.setLeaseDurationInSeconds(duration);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy