Examples of DistributedSnapshotStore


Examples of org.apache.aurora.scheduler.storage.DistributedSnapshotStore

    return new AbstractModule() {
      @Override
      protected void configure() {
        bind(Storage.class).to(Key.get(Storage.class, LogStorage.WriteBehind.class));
        bind(NonVolatileStorage.class).to(FakeNonVolatileStorage.class);
        bind(DistributedSnapshotStore.class).toInstance(new DistributedSnapshotStore() {
          @Override
          public void persist(Snapshot snapshot) throws CodingException {
            // No-op.
          }
        });
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.