Skip to content
Snippets Groups Projects
  • gmantele's avatar
    fa206848
    [UWS,TAP] Synchronize access to ISO8601Format. · fa206848
    gmantele authored
    This class is using static attributes of type DecimalFormat.
    Unfortunately this type of objects can NOT be accessed by multiple
    threads simultaneously: it is not thread-safe. Parsing errors,
    mostly during TAP uploads, have been experienced for this reason.
    
    To solve quickly this issue, the main static public functions of
    ISO8601Format have been synchronized.
    fa206848
    History
    [UWS,TAP] Synchronize access to ISO8601Format.
    gmantele authored
    This class is using static attributes of type DecimalFormat.
    Unfortunately this type of objects can NOT be accessed by multiple
    threads simultaneously: it is not thread-safe. Parsing errors,
    mostly during TAP uploads, have been experienced for this reason.
    
    To solve quickly this issue, the main static public functions of
    ISO8601Format have been synchronized.