mirror of
https://github.com/nikdoof/vsphere-influxdb-go.git
synced 2025-12-19 13:39:21 +00:00
add vendoring with go dep
This commit is contained in:
32
vendor/github.com/influxdata/influxdb/stress/v2/statement/wait.go
generated
vendored
Normal file
32
vendor/github.com/influxdata/influxdb/stress/v2/statement/wait.go
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
package statement
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/influxdata/influxdb/stress/v2/stress_client"
|
||||
)
|
||||
|
||||
// WaitStatement is a Statement Implementation to prevent the test from returning to early when running GoStatements
|
||||
type WaitStatement struct {
|
||||
StatementID string
|
||||
|
||||
runtime time.Duration
|
||||
}
|
||||
|
||||
// SetID statisfies the Statement Interface
|
||||
func (w *WaitStatement) SetID(s string) {
|
||||
w.StatementID = s
|
||||
}
|
||||
|
||||
// Run statisfies the Statement Interface
|
||||
func (w *WaitStatement) Run(s *stressClient.StressTest) {
|
||||
runtime := time.Now()
|
||||
s.Wait()
|
||||
w.runtime = time.Since(runtime)
|
||||
}
|
||||
|
||||
// Report statisfies the Statement Interface
|
||||
func (w *WaitStatement) Report(s *stressClient.StressTest) string {
|
||||
return fmt.Sprintf("WAIT -> %v", w.runtime)
|
||||
}
|
||||
Reference in New Issue
Block a user