Skip to content

thetechpanda/stopwatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stopwatch

Test Go Report Card Go Reference Release Dependencies

A dead simple stopwatch, with a sprinkle of clock.

Key Features

Stopwatch it's easy, offers a globally available stop watch instance initialised at package load.

Clock it's easy too, but bare bone. Is not very precise.

Motivation

Needed a simple stopwatch. Then I didn't know where to put clock.

Usage

package main

import (
	"fmt"

	"github.com/thetechpanda/stopwatch"
)

func main() {
	// stopwatch
    fmt.Printf("time: %s\n", stopwatch.Elapsed().String())

	// clock
	clock := stopwatch.NewClock(time.Second)
	for i := range 1000 {
		go func() {
			<-clock.Tick()
			fmt.Printf("hi from %d\n", i)
		}()
	}
	// enjoy the flood
}

Installation

go get github.com/thetechpanda/stopwatch

Todo

  • Clock benchmarks (how do I even benchmark it?)

Contributing

Contributions are welcome and very much appreciated!

Feel free to open an issue or submit a pull request.

License

The stopwatch package is released under the MIT License. See the LICENSE file for details.