Package co.arcs.groove.basking.event.Events

Examples of co.arcs.groove.basking.event.Events.DeleteFilesStartedEvent


    }

    @Override
    public List<File> call() throws Exception {

        bus.post(new DeleteFilesStartedEvent(this));

        List<ListenableFuture<File>> deleteFutures = Lists.newArrayList();
        for (Item item : items) {
            deleteFutures.add(executor.submit(new DeleteFileTask(bus, item.getFile())));
        }
View Full Code Here

TOP

Related Classes of co.arcs.groove.basking.event.Events.DeleteFilesStartedEvent

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.