Package co.arcs.groove.basking.task.SyncTask

Examples of co.arcs.groove.basking.task.SyncTask.Outcome


            syncService.getEventBus().register(consoleLogger);

            ListenableFuture<Outcome> serviceOutcome = syncService.start(config);

            try {
                Outcome outcome = serviceOutcome.get();
                if (outcome.getFailedToDownload() > 0) {
                    System.exit(1);
                }
            } catch (Throwable t) {
                System.exit(1);
            }
View Full Code Here

TOP

Related Classes of co.arcs.groove.basking.task.SyncTask.Outcome

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.