Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
backwpup
/
inc
/
//home/puskom/mastur/backwpup/inc/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(); }