Package org.apache.excalibur.event.impl

Examples of org.apache.excalibur.event.impl.DefaultQueue


    }

    public void testDefaultQueue()
        throws Exception
    {
        this.performQueue( new DefaultQueue() );
    }
View Full Code Here


    public void initialize( int count, long timeout ) throws Exception
    {
        this.stages = new Thread[ 2 ];

        this.queue = new DefaultQueue();
        this.queue.setTimeout( timeout );

        this.start = new QueueStart( count );
        this.start.setSink( this.queue );
        this.stages[ 0 ] = new Thread( this.start );
View Full Code Here

    }

    public void testMillionIterationOneElement()
        throws Exception
    {
        this.performMillionIterationOneElement( new DefaultQueue() );
    }
View Full Code Here

    }

    public void testMillionIterationTenElements()
        throws Exception
    {
        this.performMillionIterationTenElements( new DefaultQueue() );
    }
View Full Code Here

TOP

Related Classes of org.apache.excalibur.event.impl.DefaultQueue

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.