本文整理汇总了Java中org.csource.fastdfs.DownloadCallback类的典型用法代码示例。如果您正苦于以下问题:Java DownloadCallback类的具体用法?Java DownloadCallback怎么用?Java DownloadCallback使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DownloadCallback类属于org.csource.fastdfs包,在下文中一共展示了DownloadCallback类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: download_file
import org.csource.fastdfs.DownloadCallback; //导入依赖的package包/类
/**
* download file from storage server
* @param group_name the group name of storage server
* @param remote_filename filename on storage server
* @param callback call callback.recv() when data arrive
* @return 0 success, return none zero errno if fail
*/
public int download_file(String group_name, String remote_filename,
DownloadCallback callback) throws IOException, MyException
{
StorageClient storageClient = new StorageClient(trackerServer, storageServer);
return storageClient.download_file(group_name, remote_filename, callback);
}