Stop Watch

A java library that provides thread safe implimentation of stop watch

GitHub license Build Status Maven Central

HitCount Open Source Love svg2 Maintenance

Usage of stop watch

com.github.priytam stopwatch 1.0.0

- Gradle dependency  
```groovy
compile 'com.github.priytam:stopwatch:1.0.0'

// Pause and Start stopWatch.pause(); stopWatch.start();

stopWatch.restart(); // Restart a watch

stopWatch.stop(); // Stop a watch ```