Package org.neo4j.smack.test.util

Examples of org.neo4j.smack.test.util.PerformanceRoutes


        return (end.getTime() - start.getTime()) / 1000.0d;
    }
   
    private void startServer() {
        server = new Smack("localhost", 7473, new ImpermanentGraphDatabase());
        server.addRoute("",new PerformanceRoutes());
        server.start();
    }
View Full Code Here


        }
    }
   
    private void startServer() {
        server = new Smack("localhost", 7473, new ImpermanentGraphDatabase());
        server.addRoute("",new PerformanceRoutes());
        server.start();
    }
View Full Code Here

    private static Smack server;

    public static void main(String [] args) {
        server = new Smack("localhost", 7473, new ImpermanentGraphDatabase());
        server.addRoute("",new PerformanceRoutes());
        server.start();
       
        try
        {
            Thread.sleep(1000 * 60 * 60 * 24 * 7);
 
View Full Code Here

TOP

Related Classes of org.neo4j.smack.test.util.PerformanceRoutes

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.