dQw4w9WgXcQ 184 Share Posted October 28, 2017 (edited) 1) filter nulls automatically in Filter<T> public interface Filter<T> extends org.dreambot.api.methods.filter.Filter<T>{ @Override default boolean match(T acceptable){ return acceptable != null && matchh(acceptable); }; boolean oldMatch(T acceptable); } 2) add an option to change polling rate of sleepUntil/While public static boolean sleepUntil(Condition predicate, long timeOut, int pollRate){ return MethodProvider.sleepUntil(()->{ MethodProvider.sleep(pollRate); return predicate.verify(); }, timeOut); } edit: also evaluators Edited October 28, 2017 by rickk Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now