can I execute a particular block of code inside a method via thread. As for example
Class A{
public void execute(){
/* some code where threading is not required*/
/* block of code which need to execute via thread */
}
}
|
can I execute a particular block of code inside a method via thread. As for example
|
||||
|
|
|
|||||
|
|
yup all you have to do is implement runnable, then call that meathod inside of run() |
|||
|
|