erminas.SmartAPI.Utils.Wait.For C# (CSharp) Method

For() public static method

public static For ( Func pred, System.TimeSpan wait ) : void
pred Func
wait System.TimeSpan
return void
        public static void For(Func<bool> pred, TimeSpan wait)
        {
            For(pred, wait, DefaultRetryPeriod);
        }

Same methods

Wait::For ( Func pred, System.TimeSpan wait, System.TimeSpan retry ) : void