From 3d949fe9d6f248c9f1081fb252bb22f7e69406da Mon Sep 17 00:00:00 2001 From: John McKim Date: Tue, 27 Oct 2015 15:10:16 +1000 Subject: [PATCH] update readme --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 283e324..abe523d 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,8 @@ It allows you to set performance targets and take action if those targets are no ## Getting Started with Budgerigar - var stopwatchTimer = new StopwatchTimerProvider(); - var timerFactory = new PerformanceTimerProviderFactory(stopwatchTimer); - var budgetter = new PerformanceBudgetter(timer); - var response = await budgetter.RunWithBudgetAsync("HttpRequest-http://localhost", 1.0M, async (b) => { + var budgetter = new PerformanceBudgetter(); + var response = await budgetter.RunWithBudgetAsync("some-task-name", 1.0M, async (b) => { // do work }, (result) => {