123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * Copyright © 2018 Zhenjie Yan.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package com.yanzhenjie.kalle.download;
- import com.yanzhenjie.kalle.Response;
- import com.yanzhenjie.kalle.connect.http.Call;
- import java.io.IOException;
- /**
- * Created by Zhenjie Yan on 2018/3/18.
- */
- public class UrlWorker extends BasicWorker<UrlDownload> {
- private Call mCall;
- UrlWorker(UrlDownload download) {
- super(download);
- }
- @Override
- protected Response requestNetwork(UrlDownload download) throws IOException {
- mCall = new Call(download);
- return mCall.execute();
- }
- @Override
- public void cancel() {
- if (mCall != null && !mCall.isCanceled()) {
- mCall.asyncCancel();
- }
- }
- @Override
- public boolean isCancelled() {
- return mCall.isCanceled();
- }
- }
|