8 lines
172 B
Go
8 lines
172 B
Go
package requestid
|
|
|
|
type RequestIdGenerator interface {
|
|
GenerateRequestId(clientIpAddr string) string
|
|
GetCurrentServerUniqId() uint16
|
|
GetCurrentInstanceUniqId() uint16
|
|
}
|