Here is the project how send one message.
Now I want to use this to send many messages (whit threads or another ways....),
Because I need change a part of the message in each call I need pass a
string parameter via
Thread.
Because I need to know if its possible pass a String parameter to a thread.
for example...
>>Main..
for (x= 0; x< 50; x++){
Thread t = new Thread(x);
t.start();
}
>>run
MyClass mc = new MYclass();
mc.sendMessage(x); ----> this method it will replace the main method in the code I wrote before.
I hope I describe my doubt.
Thanks a lot.