You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can not make it multithreaded? I tried different solutions but does not work.
Caused by: com.github.koraktor.steamcondenser.exceptions.SteamCondenserException: XML data could not be parsed: FWK005 parse may not be called while parsing.
The text was updated successfully, but these errors were encountered:
Steam Condenser’s Java implementation uses a static DocumentBuilder instance which is reused for all XML parsing. That prevents it from being capable of multi-threading.
Initially, XMLData should be removed in version 2.0.0 as Valve deprecated its XML APIs. As there‘s still no full-featured Web API, this might change, though. So I might consider this.
However, the master branch already uses the Web API for most parts, e.g. SteamId#getGames(). So you might have more luck with that branch.
An example in pseudocode.
List<SteamId> steamUsers;
List<SteamGame> steamGames;
You can not make it multithreaded? I tried different solutions but does not work.
Caused by: com.github.koraktor.steamcondenser.exceptions.SteamCondenserException: XML data could not be parsed: FWK005 parse may not be called while parsing.
The text was updated successfully, but these errors were encountered: