Package net.openhft.chronicle

Examples of net.openhft.chronicle.ChronicleConfig


  }

  @Override
  protected void doStart() {
    ChronicleTools.warmup();
    ChronicleConfig config = ChronicleConfig.DEFAULT.clone()
                                                    .synchronousMode(false)
                                                    .useUnsafe(true);
    this.basePath = (this.basePath.endsWith("/") ? this.basePath + getName() : this.basePath + "/" + getName());
    try {
      chronicle = new IndexedChronicle(basePath, config);
View Full Code Here

TOP

Related Classes of net.openhft.chronicle.ChronicleConfig

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.