Remove completely unused structs

This commit is contained in:
Sean Chittenden 2016-05-15 09:14:36 -07:00
parent 92298e3d02
commit 0e34cc3486
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 0 additions and 23 deletions

View File

@ -91,12 +91,6 @@ type handshakeRequest struct {
Version int32 Version int32
} }
type eventRequest struct {
Name string
Payload []byte
Coalesce bool
}
type forceLeaveRequest struct { type forceLeaveRequest struct {
Node string Node string
} }
@ -149,10 +143,6 @@ type monitorRequest struct {
LogLevel string LogLevel string
} }
type streamRequest struct {
Type string
}
type stopRequest struct { type stopRequest struct {
Stop uint64 Stop uint64
} }
@ -161,14 +151,6 @@ type logRecord struct {
Log string Log string
} }
type userEventRecord struct {
Event string
LTime serf.LamportTime
Name string
Payload []byte
Coalesce bool
}
type Member struct { type Member struct {
Name string Name string
Addr net.IP Addr net.IP
@ -183,11 +165,6 @@ type Member struct {
DelegateCur uint8 DelegateCur uint8
} }
type memberEventRecord struct {
Event string
Members []Member
}
type AgentRPC struct { type AgentRPC struct {
sync.Mutex sync.Mutex
agent *Agent agent *Agent