From 0f135cf32c92dad628e4290f8f0d5ff4d9923264 Mon Sep 17 00:00:00 2001 From: Paul Irwin Date: Wed, 7 Aug 2024 15:23:24 -0600 Subject: [PATCH] Update README for sequential load strategy --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8cedeef..b0846f3 100644 --- a/README.md +++ b/README.md @@ -32,5 +32,6 @@ There are a couple built-in strategies for generating load, or you can implement * `ConstantUserLoadStrategy`: Attempts to maintain a constant concurrent user load at each given check interval until the given duration has passed. * `OneShotBurstLoadStrategy`: Enqueue the given number of tasks all at once. Does not repeat. * `RepeatBurstLoadStrategy`: Repeat enqueueing the given count of tasks at each given interval until the given duration has passed. +* `SequentialLoadStrategy`: An aggregate strategy that executes multiple load strategies in order. Great for creating scenarios like step up, then hold steady, then step down. * `SteppedBurstLoadStrategy`: Enqueue an increasing (or decreasing) burst of tasks in a stepwise manner, regardless of how many are still running. * `SteppedUserLoadStrategy`: Attempts to maintain an increasing (or decreasing) concurrent user load in a stepwise manner.