Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Does Dreambot's API consume thread interrupts?


    TheAppFoundry

    Recommended Posts

    Seems like all of the methods in Dreambot's API consume interrupts thrown at threads. 

      @Override
        public int onLoop() {
    
            backgroundThread = new Thread(new MyRunnable(Thread.currentThread()));
            backgroundThread.start();
    
            while(!Thread.interrupted()){
                log("inside loop");
            }
            log("test");
    
    
            return 0;
        }
    
        public class MyRunnable implements Runnable{
    
            private Thread mainThread;
            public MyRunnable(Thread mainThread){
                this.mainThread = mainThread;
            }
            @Override
            public void run() {
    
                try {
                    Thread.sleep(5000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                mainThread.interrupt();
            }
    
        }
    

    This gets stuck in the while loop because I believe the log consumes the interrupt.

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.