home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / jukemb10.zip / jbplay.nrx < prev    next >
Text File  |  1997-05-23  |  462b  |  30 lines

  1. import RXFile
  2.  
  3. class jbplay extends Thread
  4.  
  5. rtime = Runtime
  6. pr2 = Process
  7. mt = MainThread
  8. rxLog = RXFile()
  9. toPlay = Rexx
  10.  
  11. method jbplay(maint = MainThread)
  12. mt = maint
  13.  
  14. method PlayIt(rSong = Rexx)
  15.  toPlay = rSong
  16.  
  17. method run()
  18.  i = int 0
  19.  
  20.  do
  21.   rtime = Runtime.getRuntime()
  22.   pr2 = rtime.exec(toPlay)
  23.   mt.setProcess(pr2)
  24.   pr2.waitFor()
  25.  catch InterruptedException
  26.  catch IOException
  27.  catch NullPointerException
  28.  end
  29.  mt.sendNext()
  30.