?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/dev-uz-avocat/wp-content/plugins/backwpup/inc/



?? Go up: /home/webdevt/www/dev-uz-avocat/wp-content/plugins/backwpup

?? Viewing: class-destination-downloader-interface.php

<?php

// -*- coding: utf-8 -*-

/**
 * Interface BackWPup_Destination_Downloader_Service_Interface.
 */
interface BackWPup_Destination_Downloader_Interface
{
    /**
     * Download part of the backup file.
     *
     * @param int $start_byte
     * @param int $end_byte
     *
     * @throws Exception in case something went wrong
     */
    public function download_chunk($start_byte, $end_byte);

    /**
     * Calculated the size of the source file.
     *
     * @return int
     */
    public function calculate_size();
}


??

??