9 lines
232 B
Go
9 lines
232 B
Go
package requestid
|
|
|
|
// RequestIdGenerator is common request generator interface
|
|
type RequestIdGenerator interface {
|
|
GenerateRequestId(clientIpAddr string) string
|
|
GetCurrentServerUniqId() uint16
|
|
GetCurrentInstanceUniqId() uint16
|
|
}
|