-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As per @StephenButtolph's comment: ava-labs/subnet-evm#1166 (comment) Co-authored-by: Stephen Buttolph <[email protected]>
- Loading branch information
1 parent
6626d2b
commit b384723
Showing
4 changed files
with
34 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved. | ||
// See the file LICENSE for licensing terms. | ||
|
||
package timer | ||
|
||
import ( | ||
"time" | ||
) | ||
|
||
// StoppedTimer returns a stopped timer so that there is no entry on | ||
// the C channel (and there isn't one scheduled to be added). | ||
// | ||
// This means that after calling Reset there will be no events on the | ||
// channel until the timer fires (at which point there will be exactly | ||
// one event sent to the channel). | ||
|
||
// It enables re-using the timer across loop iterations without | ||
// needing to have the first loop iteration perform any == nil checks | ||
// to initialize the first invocation. | ||
func StoppedTimer() *time.Timer { | ||
timer := time.NewTimer(0) | ||
if !timer.Stop() { | ||
<-timer.C | ||
} | ||
return timer | ||
} |