I have a application and it is used by multiple users at a same time . i wanted to use a common function say for example number format
public class CustomFormat
{
public static function funt(val:int,prec:int):int
{
// return val with formatting along with prec
}
}
As static functions are attached to classes not to the instances .
now assume the case when two user's call that CustomFormat.funt(2,2); & CustomFormat.funt(3,3); at same time how this will act . i guess there might me issue in result's . to try still i did not implement this , so any suggestion's , if this has issue then i need create an object for each request or anything else i need to do
thanks