Package org.hive2hive.core.processes.implementations.files.recover

Examples of org.hive2hive.core.processes.implementations.files.recover.SelectVersionStep


  public ProcessComponent createRecoverFileProcess(File file, IVersionSelector selector, NetworkManager networkManager)
      throws NoSessionException, NoPeerConnectionException {
    RecoverFileContext context = new RecoverFileContext(file);
    SequentialProcess process = new SequentialProcess();
    process.add(new File2MetaFileComponent(file, context, context, networkManager));
    process.add(new SelectVersionStep(context, selector, networkManager));

    return process;
  }
View Full Code Here

TOP

Related Classes of org.hive2hive.core.processes.implementations.files.recover.SelectVersionStep

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.