com.azure.communication.jobrouter.models.RoundRobinMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-jobrouter Show documentation
Show all versions of azure-communication-jobrouter Show documentation
This package contains a Java SDK for JobRouter Azure Communication Service.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.communication.jobrouter.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* Jobs are distributed in order to workers, starting with the worker that is after the last worker to receive a job.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "kind")
@JsonTypeName("roundRobin")
@Fluent
public final class RoundRobinMode extends DistributionMode {
/** Creates an instance of RoundRobinMode class. */
@Generated
public RoundRobinMode() {
}
/** {@inheritDoc} */
@Generated
@Override
public RoundRobinMode setMinConcurrentOffers(Integer minConcurrentOffers) {
super.setMinConcurrentOffers(minConcurrentOffers);
return this;
}
/** {@inheritDoc} */
@Generated
@Override
public RoundRobinMode setMaxConcurrentOffers(Integer maxConcurrentOffers) {
super.setMaxConcurrentOffers(maxConcurrentOffers);
return this;
}
/** {@inheritDoc} */
@Generated
@Override
public RoundRobinMode setBypassSelectors(Boolean bypassSelectors) {
super.setBypassSelectors(bypassSelectors);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy