Package org.apache.avro.repo.server

Examples of org.apache.avro.repo.server.RepositoryServer


  public void doSetup() throws Exception {
    Properties props = new Properties();
    props.put("avro.repo.class", InMemoryRepository.class.getName());
    props.put("jetty.host", "localhost");
    props.put("jetty.port", "8123");
    server = new RepositoryServer(props);
    server.start();
  }
View Full Code Here

TOP

Related Classes of org.apache.avro.repo.server.RepositoryServer

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.