Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
johncmckim committed Oct 27, 2015
1 parent 0358742 commit 3d949fe
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 3d949fe

Please sign in to comment.