Files
ezbookkeeping/pkg/requestid/request_id_generator.go
T

9 lines
251 B
Go

package requestid
// RequestIdGenerator is common request generator interface
type RequestIdGenerator interface {
GenerateRequestId(clientIpAddr string, clientPort uint16) string
GetCurrentServerUniqId() uint16
GetCurrentInstanceUniqId() uint16
}