Package org.asteriskjava.fastagi.internal

Examples of org.asteriskjava.fastagi.internal.DefaultAgiChannelFactory


     * @param mappingStrategy          the MappingStrategy to use to determine the AgiScript to run.
     * @since 1.0.0
     */
    public DefaultAgiServer(String configResourceBundleName, MappingStrategy mappingStrategy)
    {
        this(configResourceBundleName, mappingStrategy, new DefaultAgiChannelFactory());
    }
View Full Code Here


    private volatile boolean die = false;

    public AbstractAgiServer()
    {
        this(new DefaultAgiChannelFactory());
    }
View Full Code Here

     *
     * @see #setMappingStrategy(MappingStrategy)
     */
    public AsyncAgiServer()
    {
        this(new DefaultAgiChannelFactory());
    }
View Full Code Here

     * @param mappingStrategy the MappingStrategy to use to determine which AGI script to run
     *                        for a certain request.
     */
    public AsyncAgiServer(MappingStrategy mappingStrategy)
    {
        this(mappingStrategy, new DefaultAgiChannelFactory());
        logger.debug("use default AgiChannelFactory");
    }
View Full Code Here

     *
     * @param agiScript the AGI script to execute.
     */
    public AsyncAgiServer(AgiScript agiScript)
    {
        this(agiScript, new DefaultAgiChannelFactory());
        logger.debug("use default AgiChannelFactory");
    }
View Full Code Here

TOP

Related Classes of org.asteriskjava.fastagi.internal.DefaultAgiChannelFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.