UrlWorker.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright © 2018 Zhenjie Yan.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.yanzhenjie.kalle.download;
  17. import com.yanzhenjie.kalle.Response;
  18. import com.yanzhenjie.kalle.connect.http.Call;
  19. import java.io.IOException;
  20. /**
  21. * Created by Zhenjie Yan on 2018/3/18.
  22. */
  23. public class UrlWorker extends BasicWorker<UrlDownload> {
  24. private Call mCall;
  25. UrlWorker(UrlDownload download) {
  26. super(download);
  27. }
  28. @Override
  29. protected Response requestNetwork(UrlDownload download) throws IOException {
  30. mCall = new Call(download);
  31. return mCall.execute();
  32. }
  33. @Override
  34. public void cancel() {
  35. if (mCall != null && !mCall.isCanceled()) {
  36. mCall.asyncCancel();
  37. }
  38. }
  39. @Override
  40. public boolean isCancelled() {
  41. return mCall.isCanceled();
  42. }
  43. }