jueves, 16 de diciembre de 2021

Thread fácil (1)

 Segun stackoverflow, esta es una manera fácil de hacer threads en java


new Thread(() -> {
  try {
    this.share = FirmadocUtils.getSMBShare (this.FirmadocProps);
   
    FirmadocUtils.persistAllCSVsSamba(this.share, this.FirmadocProps,this.daoCSVLog);
  } catch (Exception e) {e.printStackTrace();}
}).start();




No hay comentarios :

Publicar un comentario