Package org.apache.blur.thrift.generated.Blur

Examples of org.apache.blur.thrift.generated.Blur.Iface.configuration()


public class PrintConfiguration {

  public static void main(String[] args) throws BlurException, TException, IOException {
    String connectionStr = args[0];
    Iface client = BlurClient.getClient(new Connection("localhost", 40020,10000));
    Map<String, String> map = new TreeMap<String, String>(client.configuration());
    for (Entry<String, String> e : map.entrySet()) {
      System.out.println(e.getKey() + " " + e.getValue());
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.