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

org.lastbamboo.common.ice.candidate.IceCandidatePairState Maven / Gradle / Ivy

The newest version!
package org.lastbamboo.common.ice.candidate;

/**
 * States for ICE candidate pairs. 
 */
public enum IceCandidatePairState
    {

    /**
     * The pair is waiting for execution.
     */
    WAITING,
    
    /**
     * The pair resolution is in progress.
     */
    IN_PROGRESS,
    
    /**
     * The pair succeeded.
     */
    SUCCEEDED,
    
    /**
     * The pair has permanently failed.
     */
    FAILED,
    
    /**
     * The pair is inactive.
     */
    FROZEN;
    
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy