Skip to content

Instantly share code, notes, and snippets.

@saqibmehmoodgit
Created April 3, 2017 09:09
Show Gist options
  • Save saqibmehmoodgit/bd12b314c150065048006a7d8ba19ad5 to your computer and use it in GitHub Desktop.
Save saqibmehmoodgit/bd12b314c150065048006a7d8ba19ad5 to your computer and use it in GitHub Desktop.
@RequestMapping(value = "/sendEmail", method = RequestMethod.GET)
public String sendEmail(Model model)
{
try {
ReadDataForEmailsImpl rDFEmail = new ReadDataForEmailsImpl(); //// thread for read data
SendEmail sendEmail = new SendEmail() ; //// thread for send data
rDFEmail.start();
sendEmail.start();
////
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment