Merge 0deaa25a0b
into d32eb195e1
This commit is contained in:
commit
c9a5aea1cf
@ -191,7 +191,7 @@ func (client *Client) do(funcname string, data []byte,
|
||||
}
|
||||
handle = resp.Handle
|
||||
}
|
||||
id := IdGen.Id()
|
||||
id := IdGen.Id(funcname, string(data))
|
||||
req := getJob(id, []byte(funcname), data)
|
||||
req.DataType = flag
|
||||
if err = client.write(req); err != nil {
|
||||
|
@ -16,10 +16,10 @@ func init() {
|
||||
IdGen = NewAutoIncId()
|
||||
}
|
||||
|
||||
// ID generator interface. Users can implament this for
|
||||
// ID generator interface. Users can implement this for
|
||||
// their own generator.
|
||||
type IdGenerator interface {
|
||||
Id() string
|
||||
Id(funcname, payload string) string
|
||||
}
|
||||
|
||||
// AutoIncId
|
||||
@ -27,7 +27,7 @@ type autoincId struct {
|
||||
value int64
|
||||
}
|
||||
|
||||
func (ai *autoincId) Id() string {
|
||||
func (ai *autoincId) Id(funcname, payload string) string {
|
||||
next := atomic.AddInt64(&ai.value, 1)
|
||||
return strconv.FormatInt(next, 10)
|
||||
}
|
||||
|
@ -7,9 +7,9 @@ import (
|
||||
func TestAutoInc(t *testing.T) {
|
||||
ai := NewAutoIncId()
|
||||
|
||||
previous := ai.Id()
|
||||
previous := ai.Id("testfuncname", "fakepayload")
|
||||
for i := 0; i < 10; i++ {
|
||||
id := ai.Id()
|
||||
id := ai.Id("testfuncname", "fakepayload2")
|
||||
if id == previous {
|
||||
t.Errorf("Id not unique, previous and current %s", id)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user