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

Examples of org.hive2hive.core.processes.implementations.files.delete.DeleteFromUserProfileStep


    // process composition
    SequentialProcess process = new SequentialProcess();

    // hint: this step automatically adds additional process steps when the meta file and the chunks need
    // to be deleted
    process.add(new DeleteFromUserProfileStep(file, context, networkManager));
    process.add(new DeleteFileOnDiskStep(file)); // TODO make asynchronous
    process.add(new PrepareDeleteNotificationStep(context));
    process.add(createNotificationProcess(context, networkManager));

    return process;
View Full Code Here

TOP

Related Classes of org.hive2hive.core.processes.implementations.files.delete.DeleteFromUserProfileStep

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.