~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

create thread for bbc

Show diffs side-by-side

added added

removed removed

Lines of Context:
636
636
        return self._real_repository.abort_write_group(
637
637
            suppress_errors=suppress_errors)
638
638
 
 
639
    @property
 
640
    def chk_bytes(self):
 
641
        """Decorate the real repository for now.
 
642
 
 
643
        In the long term a full blown network facility is needed to avoid
 
644
        creating a real repository object locally.
 
645
        """
 
646
        self._ensure_real()
 
647
        return self._real_repository.chk_bytes
 
648
 
639
649
    def commit_write_group(self):
640
650
        """Complete a write group on the decorated repository.
641
651