Hello All, I am new to GWT and I am writing a UI to a data analysis Tool. Details: I have a Data Base (MySql) that contains data and some meta data. the client can choose a data set to work on and on this data set he can run different analysis.
in my design there are 4 logical modules: Server side UI,Client Side UI, DataBase, Analysis worker Flow: client asks for an analysis (Client UI) ---> the server side of GWT receive and validate --> Data Base that will enter it to the DB(MySql) to a Job table --> once every couple of milliseconds the Analysis Worker will wake up query the DB (MySql) and preform the Job. Question: 1.When do I create the Analysis worker Thread? Assume that I want a Total on 5 Threads like this and not foreach client. I want to call some initialization function that will create these threads but where do I place it? I don't want it to be called every time a new client enters. I thought about using some kind of Boolean variable but is there a better solution? Thank you very much! Eliav -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
