All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.robindevilliers.cascade.events.WaitASecond Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.github.robindevilliers.cascade.events;


import static com.github.robindevilliers.cascade.utils.Utils.sleep;

public class WaitASecond implements Handler {

    @Override
    public void handle(Object step) {
        sleep(1000);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy