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

com.sportradar.unifiedodds.sdk.oddsentities.ProducerStatus Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.unifiedodds.sdk.oddsentities;

/**
 * The event that gets released when the status of the producer gets updated
 */
public interface ProducerStatus extends Message {
    /**
     * An indication if the associated {@link Producer} is down
     *
     * @return true if the {@link Producer} is down, otherwise false
     */
    boolean isDown();

    /**
     * An indication if the associated {@link Producer} is delayed(processing queue is building up)
     *
     * @return true if the {@link Producer} is delayed, otherwise false
     */
    boolean isDelayed();

    /**
     * Returns the reason of the {@link Producer} status change
     *
     * @return the reason of the status change
     */
    ProducerStatusReason getProducerStatusReason();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy