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


Java FileDownloadStatus.retry方法代码示例

本文整理汇总了Java中com.liulishuo.filedownloader.model.FileDownloadStatus.retry方法的典型用法代码示例。如果您正苦于以下问题:Java FileDownloadStatus.retry方法的具体用法?Java FileDownloadStatus.retry怎么用?Java FileDownloadStatus.retry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.liulishuo.filedownloader.model.FileDownloadStatus的用法示例。


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

示例1: handleMessage

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public boolean handleMessage(Message msg) {
    handlingMessage = true;
    final int status = msg.what;

    try {
        switch (status) {
            case FileDownloadStatus.progress:
                handleProgress(SystemClock.elapsedRealtime(), true);
                break;
            case FileDownloadStatus.retry:
                handleRetry((Exception) msg.obj, msg.arg1);
                break;
        }
    } finally {
        handlingMessage = false;
        if (parkThread != null) LockSupport.unpark(parkThread);
    }


    return true;
}
 
开发者ID:angcyo,项目名称:RLibrary,代码行数:23,代码来源:DownloadStatusCallback.java

示例2: handleMessage

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public boolean handleMessage(Message msg) {
    final int status = msg.what;

    switch (status) {
        case FileDownloadStatus.progress:
            handleProgress(SystemClock.elapsedRealtime(), true);
            break;
        case FileDownloadStatus.completed:
            if (interceptBeforeCompleted()) {
                return true;
            }

            try {
                handleCompleted();
            } catch (IOException e) {
                onError(e);
                return true;
            }
            break;
        case FileDownloadStatus.retry:
            handleRetry((Exception) msg.obj, msg.arg1);
            break;
        case FileDownloadStatus.paused:
            handlePaused();
            break;
        case FileDownloadStatus.error:
            handleError((Exception) msg.obj);
            break;
    }

    if (FileDownloadStatus.isOver(status)) {
        handlerThread.quit();
    }

    return true;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:38,代码来源:DownloadStatusCallback.java

示例3: show

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public void show(boolean statusChanged, int status, boolean isShowProgress) {

    String desc = getDesc();
    switch (status) {
        case FileDownloadStatus.pending:
            desc += " pending";
            break;
        case FileDownloadStatus.started:
            desc += " started";
            break;
        case FileDownloadStatus.progress:
            desc += " progress";
            break;
        case FileDownloadStatus.retry:
            desc += " retry";
            break;
        case FileDownloadStatus.error:
            desc += " error";
            break;
        case FileDownloadStatus.paused:
            desc += " paused";
            break;
        case FileDownloadStatus.completed:
            desc += " completed";
            break;
        case FileDownloadStatus.warn:
            desc += " warn";
            break;
    }

    builder.setContentTitle(getTitle())
            .setContentText(desc);


    if (statusChanged) {
        builder.setTicker(desc);
    }

    builder.setProgress(getTotal(), getSofar(), !isShowProgress);
    getManager().notify(getId(), builder.build());
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:43,代码来源:NotificationMinSetActivity.java

示例4: createFromParcel

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public MessageSnapshot createFromParcel(Parcel source) {
    boolean largeFile = source.readByte() == 1;
    byte status = source.readByte();
    final MessageSnapshot snapshot;
    switch (status) {
        case FileDownloadStatus.pending:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.PendingMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.PendingMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.started:
            snapshot = new StartedMessageSnapshot(source);
            break;
        case FileDownloadStatus.connected:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.ConnectedMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.ConnectedMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.progress:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.ProgressMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.ProgressMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.retry:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.RetryMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.RetryMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.error:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.ErrorMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.ErrorMessageSnapshot(source);
            }
            break;
        case FileDownloadStatus.completed:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.CompletedSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.CompletedSnapshot(source);
            }
            break;
        case FileDownloadStatus.warn:
            if (largeFile) {
                snapshot = new LargeMessageSnapshot.WarnMessageSnapshot(source);
            } else {
                snapshot = new SmallMessageSnapshot.WarnMessageSnapshot(source);
            }
            break;
        default:
            snapshot = null;
    }

    if (snapshot != null) {
        snapshot.isLargeFile = largeFile;
    } else {
        throw new IllegalStateException("Can't restore the snapshot because unknown " +
                "status: " + status);
    }

    return snapshot;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:72,代码来源:MessageSnapshot.java

示例5: getStatus

import com.liulishuo.filedownloader.model.FileDownloadStatus; //导入方法依赖的package包/类
@Override
public byte getStatus() {
    return FileDownloadStatus.retry;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:5,代码来源:SmallMessageSnapshot.java


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