Jump to content

API docs for ConditionalSleep and ConditionalLoop


Recommended Posts

Posted
    private void conditionalSleep(int amount, boolean condition) {
        new ConditionalSleep(amount) {
            @Override
            public boolean condition() throws InterruptedException {
                return condition;
            }
        }.sleep();
    }

Does anyone know where they are? Eclipse suggests they would be in org.osbot.rs07.utility which is not in the docs at all... 

 

 

 

you wont find the doc in the api but the class and interface are there. I use them in my script

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...