Package org.stringtree.tract

Examples of org.stringtree.tract.MapByteTract


    public LocalServer(Object app) throws IOException {
      super(app, "9999", (Fetcher)null, (Fetcher)null);
    }

  public ByteTract request(ByteTract req) {
        ByteTract ret = new MapByteTract();
        RequestContext context = new LocalRequestContext(common, aliases, req, ret);
        ModalOutputCollector output = new LocalOutputCollector(ret, context);
        request(context, output);       
        return ret;
    }
View Full Code Here

TOP

Related Classes of org.stringtree.tract.MapByteTract

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.