mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
9 lines
251 B
Go
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
|
|
}
|