Git Product home page Git Product logo

Comments (3)

jpd236 avatar jpd236 commented on May 2, 2024

I'm not quite sure I see what's difficult here. You can extend ImageRequest and override getPriority to set a request. You can also extend ImageLoader and override makeImageRequest to return your custom ImageRequest which overrides getPriority. None of this should require too much duplicated/custom code.

What APIs are you proposing to add?

from volley.

xp-vit avatar xp-vit commented on May 2, 2024

I was thinking on extending:
public ImageContainer get(String requestUrl, ImageListener imageListener, int maxWidth, int maxHeight, ScaleType scaleType)

to

public ImageContainer get(String requestUrl, ImageListener imageListener, int maxWidth, int maxHeight, ScaleType scaleType, Priority priority) {

And then add appropriate convenience methods with smaller number of parameters in the same time supporting API backward compatibility, passing Priority.LOW when priority not passed.

from volley.

jpd236 avatar jpd236 commented on May 2, 2024

I think that approach might run into issues with makeImageRequest(), which is protected and thus can't have its signature changed. Open to ideas on how to resolve that, but I'm not seeing a simple one at a glance. It's not as simple as adding an overloaded copy like you propose for get(), because get() needs to know which version of makeImageRequest to call, and it can't know whether there's an overridden version of makeImageRequest. But you presumably need some way to propagate the priority down to it.

Also, for what it's worth, I think the semantics are a bit hard to define when it comes to the request batching that ImageLoader does. If a request is in the queue for an image at one priority, and a new one comes in with a higher priority, what should happen? We don't really have a way to promote the priority of an in-flight request. That makes me a bit hesitant to explicitly add this as an API, because you might call get with a high priority and not realize that it would have no impact if a low priority request is already in flight.

I don't know how an app might decide to prioritize requests, but it still seems to me like subclassing ImageLoader would be the way to go here if you accept the above caveat and still want custom priorities, maybe because you can guarantee in your application that there's a unique URL -> priority mapping. But in that case, it should be possible to just override makeImageRequest and apply that mapping on the given requestUrl and return an ImageRequest with the given priority.

from volley.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.