feat: support multi-machine collaborative distributed load testing #1193

This commit is contained in:
xucong053
2022-07-25 21:14:58 +08:00
committed by 徐聪
parent ab12707fcf
commit 0ab2017f93
29 changed files with 3354 additions and 171 deletions
+9
View File
@@ -0,0 +1,9 @@
package boomer
type client interface {
connect() (err error)
close()
recvChannel() chan *genericMessage
sendChannel() chan *genericMessage
disconnectedChannel() chan bool
}