Package com.spidercache.node

Examples of com.spidercache.node.Node


public class SimplestServer {

  public static void main(String[] args) throws Exception {

    Node n = new Node("/home/michael/cache");
    Server server = new Server(8080);
    server.setHandler(new HelloHandler(n));

    server.start();
    server.join();
View Full Code Here

TOP

Related Classes of com.spidercache.node.Node

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.