Package de.fu_berlin.inf.dpp.activities.business

Examples of de.fu_berlin.inf.dpp.activities.business.ChecksumErrorActivity


                    progress.newChild(1));
            }

            // Tell the user that we sent all files
            sarosSession.sendActivity(checksumError.getSource(),
                new ChecksumErrorActivity(sarosSession.getLocalUser(), null,
                    checksumError.getRecoveryID()));
        } finally {
            progress.done();
        }
    }
View Full Code Here


        ArrayList<SPath> sPaths = new ArrayList<SPath>();
        if (this.paths != null)
            for (SPathDataObject path : this.paths) {
                sPaths.add(path.toSPath(sarosSession));
            }
        return new ChecksumErrorActivity(sarosSession.getUser(getSource()),
            sPaths, recoveryID);
    }
View Full Code Here

            remoteProgress.beginTask("Consistency recovery for buddy "
                + session.getLocalUser().getJID().getBase(),
                filesRemaining.get());

            session.sendActivity(session.getHost(), new ChecksumErrorActivity(
                session.getLocalUser(), pathsOfHandledFiles, recoveryID));

            try {
                // block until all inconsistencies are resolved
                int filesRemainingBefore = filesRemaining.get();
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.activities.business.ChecksumErrorActivity

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.