Example usage for io.netty.util.internal SystemPropertyUtil get

List of usage examples for io.netty.util.internal SystemPropertyUtil get

Introduction

In this page you can find the example usage for io.netty.util.internal SystemPropertyUtil get.

Prototype

public static String get(final String key, String def) 

Source Link

Document

Returns the value of the Java system property with the specified key , while falling back to the specified default value if the property access fails.

Usage

From source file:ai.grakn.test.benchmark.BenchmarkTest.java

License:Open Source License

private String getReportDir() {
    return SystemPropertyUtil.get("perfReportDir", "./benchmarks/");
}