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

org.lastbamboo.common.ice.IceStunCheckerFactory Maven / Gradle / Ivy

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

import org.littleshoot.mina.common.IoSession;

/**
 * Interface for classes that create new ICE STUN connectivity check classes
 * for different transports. 
 */
public interface IceStunCheckerFactory
    {

    /**
     * Creates a new STUN checker.
     * 
     * @param session The {@link IoSession} for the checker.
     * @return The new STUN checker.
     */
    IceStunChecker newChecker(IoSession session);
    
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy