Package de.netseeker.ejoe.examples.echo

Examples of de.netseeker.ejoe.examples.echo.EchoHandler


    /**
     * @param args
     */
    public static void main( String[] args )
    {
        EJServer server = new EJServer( new EchoHandler(), 80 );
        server.setMaxReadProcessors( 1 );
        server.setMaxWriteProcessors( 1 );
        server.enableNonBlockingIO( true );
        server.enablePersistentConnections( true );
        server.enableHttpPackaging( true );
View Full Code Here

TOP

Related Classes of de.netseeker.ejoe.examples.echo.EchoHandler

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.