hello guys,
i have a static method. which can send progress status of inserted rows in db, i want to set this method in thread, so is this good approch to place static method in thread or not. while this method is not sharing any resource.
thanks in advance

Joginder BangerPosted Feb 21, 2020, 11:35 PM
I don't think static method is thread safe. You know that the static members / accessors on this class will cause them to be overwritten by different users.