当前位置: 首页>>代码示例>>Java>>正文


Java DownloadMgrInitialParams类代码示例

本文整理汇总了Java中com.liulishuo.filedownloader.services.DownloadMgrInitialParams的典型用法代码示例。如果您正苦于以下问题:Java DownloadMgrInitialParams类的具体用法?Java DownloadMgrInitialParams怎么用?Java DownloadMgrInitialParams使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DownloadMgrInitialParams类属于com.liulishuo.filedownloader.services包,在下文中一共展示了DownloadMgrInitialParams类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: init

import com.liulishuo.filedownloader.services.DownloadMgrInitialParams; //导入依赖的package包/类
/**
 * @deprecated please using {@link #setupOnApplicationOnCreate(Application)} instead.
 */
public static void init(final Context context,
                        final DownloadMgrInitialParams.InitCustomMaker maker) {
    if (FileDownloadLog.NEED_LOG) {
        FileDownloadLog.d(FileDownloader.class, "init Downloader with params: %s %s",
                context, maker);
    }

    if (context == null) {
        throw new IllegalArgumentException("the provided context must not be null!");
    }

    FileDownloadHelper.holdContext(context.getApplicationContext());

    CustomComponentHolder.getImpl().setInitCustomMaker(maker);
}
 
开发者ID:lingochamp,项目名称:FileDownloader,代码行数:19,代码来源:FileDownloader.java

示例2: init

import com.liulishuo.filedownloader.services.DownloadMgrInitialParams; //导入依赖的package包/类
/**
 * @deprecated please using {@link #setupOnApplicationOnCreate(Application)} instead.
 */
public static void init(final Context context,
                        final DownloadMgrInitialParams.InitCustomMaker maker) {
    if (FileDownloadLog.NEED_LOG) {
        FileDownloadLog.d(FileDownloader.class, "init Downloader with params: %s %s",
                context, maker);
    }

    if (context == null)
        throw new IllegalArgumentException("the provided context must not be null!");

    FileDownloadHelper.holdContext(context.getApplicationContext());

    CustomComponentHolder.getImpl().setInitCustomMaker(maker);
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:18,代码来源:FileDownloader.java

示例3: setInitCustomMaker

import com.liulishuo.filedownloader.services.DownloadMgrInitialParams; //导入依赖的package包/类
public void setInitCustomMaker(DownloadMgrInitialParams.InitCustomMaker initCustomMaker) {
    synchronized (this) {
        initialParams = new DownloadMgrInitialParams(initCustomMaker);
        connectionCreator = null;
        outputStreamCreator = null;
        database = null;
        idGenerator = null;
    }
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:10,代码来源:CustomComponentHolder.java

示例4: getDownloadManager

import com.liulishuo.filedownloader.services.DownloadMgrInitialParams; //导入依赖的package包/类
public AptoideDownloadManager getDownloadManager() {
  if (downloadManager == null) {
    final String apkPath = getCachePath() + "apks/";
    final String obbPath = getCachePath() + "obb/";
    final OkHttpClient.Builder httpClientBuilder =
        new OkHttpClient.Builder().addInterceptor(getUserAgentInterceptor())
            .addInterceptor(new PaidAppsDownloadInterceptor(getAuthenticationPersistence()))
            .addInterceptor(new DownloadMirrorEventInterceptor(Analytics.getInstance()))
            .connectTimeout(20, TimeUnit.SECONDS)
            .writeTimeout(20, TimeUnit.SECONDS)
            .readTimeout(20, TimeUnit.SECONDS);

    FileUtils.createDir(apkPath);
    FileUtils.createDir(obbPath);
    FileDownloader.init(this, new DownloadMgrInitialParams.InitCustomMaker().connectionCreator(
        new OkHttp3Connection.Creator(httpClientBuilder)));

    downloadManager = new AptoideDownloadManager(AccessorFactory.getAccessorFor(
        ((AptoideApplication) this.getApplicationContext()).getDatabase(), Download.class),
        getCacheHelper(), new FileUtils(action -> Analytics.File.moveFile(action)),
        new DownloadAnalytics(Analytics.getInstance(),
            new DownloadCompleteAnalytics(Analytics.getInstance(), Answers.getInstance(),
                AppEventsLogger.newLogger(this))), FileDownloader.getImpl(), getCachePath(),
        apkPath, obbPath);
  }
  return downloadManager;
}
 
开发者ID:Aptoide,项目名称:aptoide-client-v8,代码行数:28,代码来源:AptoideApplication.java

示例5: setupOnApplicationOnCreate

import com.liulishuo.filedownloader.services.DownloadMgrInitialParams; //导入依赖的package包/类
/**
 * Using this method to setup the FileDownloader only you want to register your own customize
 * components for Filedownloader, otherwise just using {@link #setup(Context)} instead.
 * <p/>
 * Please invoke this method on the {@link Application#onCreate()} because of the customize
 * components must be assigned before FileDownloader is running.
 * <p/>
 * Such as:
 * <p/>
 * class MyApplication extends Application {
 *     ...
 *     public void onCreate() {
 *          ...
 *          FileDownloader.setupOnApplicationOnCreate(this)
 *              .idGenerator(new MyIdGenerator())
 *              .database(new MyDatabase())
 *              ...
 *              .commit();
 *          ...
 *     }
 *     ...
 * }
 * @param application the application.
 * @return the customize components maker.
 */
public static DownloadMgrInitialParams.InitCustomMaker setupOnApplicationOnCreate(Application application) {
    final Context context = application.getApplicationContext();
    FileDownloadHelper.holdContext(context);

    DownloadMgrInitialParams.InitCustomMaker customMaker = new DownloadMgrInitialParams.InitCustomMaker();
    CustomComponentHolder.getImpl().setInitCustomMaker(customMaker);

    return customMaker;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:35,代码来源:FileDownloader.java

示例6: setupOnApplicationOnCreate

import com.liulishuo.filedownloader.services.DownloadMgrInitialParams; //导入依赖的package包/类
/**
 * Using this method to setup the FileDownloader only you want to register your own customize
 * components for Filedownloader, otherwise just using {@link #setup(Context)} instead.
 * <p/>
 * Please invoke this method on the {@link Application#onCreate()} because of the customize
 * components must be assigned before FileDownloader is running.
 * <p/>
 * Such as:
 * <p/>
 * class MyApplication extends Application {
 *     ...
 *     public void onCreate() {
 *          ...
 *          FileDownloader.setupOnApplicationOnCreate(this)
 *              .idGenerator(new MyIdGenerator())
 *              .database(new MyDatabase())
 *              ...
 *              .commit();
 *          ...
 *     }
 *     ...
 * }
 * @param application the application.
 * @return the customize components maker.
 */
public static DownloadMgrInitialParams.InitCustomMaker setupOnApplicationOnCreate(
        Application application) {
    final Context context = application.getApplicationContext();
    FileDownloadHelper.holdContext(context);

    DownloadMgrInitialParams.InitCustomMaker customMaker =
            new DownloadMgrInitialParams.InitCustomMaker();
    CustomComponentHolder.getImpl().setInitCustomMaker(customMaker);

    return customMaker;
}
 
开发者ID:lingochamp,项目名称:FileDownloader,代码行数:37,代码来源:FileDownloader.java


注:本文中的com.liulishuo.filedownloader.services.DownloadMgrInitialParams类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。