Class Wait


  • public class Wait
    extends Object
    Borrowed from Apache Artemis. Can wait for a condition.
    Example of usage:
    
       Wait.waitFor(() -> messageService.getMessageCount() == 1);
     

    Defaults:

  • MAX_WAIT_MILLIS = 30 * 1000
  • SLEEP_MILLIS = 100