IC Linnun DEU

Results 10 comments of IC Linnun DEU

We had the topic of caching come up a few times already, but maybe you can add something new to the discussion. If we wanted to cache API calls, there...

When converting to the V3 API, I basically kicked out the V1/V2 methods and the then unused enums. There is no particular reason why we should not (re)invent a few...

I have added a LeagueQueue constant specific to the league endpoint: https://github.com/taycaldwell/riot-api-java/commit/79189dafec2dfb07787d2c2439280a9af2a7d0d5

Here are a few concerns: How would that work when using listeners to wait for the result? Example: ``` // Asynchronously get summoner information AsyncRequest requestSummoner = apiAsync.getSummonersById(region, summonerId); requestSummoner.addListener(new...

I recently had the idea to move towards a Future design pattern for asynchronous requests. This comment is mostly a reminder to myself to get back to it one day,...

So, if I want to set an icon with id `2997717579`, I would have to do it like this? ``` long id = 2997717579L; int idInt = (int) id; api.addServerGroupPermission(sgId,...

Just a little followup: I can confirm that this works by casting a `long` to `(int)` or using the `.intValue()` method of `Long`.

Oh, that's too bad. I hoped the server would provide that information.

Quick follow-up question. Is there any interest in having this functionality in this API, or is this something that everyone would have to implement themselves? By this I mean having...

A few thoughts: - Not all API users would have to use the cache. It could become a boolean option in TS3Config to enable or disable this cache - Assuming...