See Client interface for documentation.
( key string, delta uint64, initValue uint64, expiration uint32)
| 702 | |
| 703 | // See Client interface for documentation. |
| 704 | func (c *RawBinaryClient) Decrement( |
| 705 | key string, |
| 706 | delta uint64, |
| 707 | initValue uint64, |
| 708 | expiration uint32) CountResponse { |
| 709 | |
| 710 | c.mutex.Lock() |
| 711 | defer c.mutex.Unlock() |
| 712 | |
| 713 | resp := c.sendCountRequest(opDecrement, key, delta, initValue, expiration) |
| 714 | if resp != nil { |
| 715 | return resp |
| 716 | } |
| 717 | return c.receiveCountResponse(opDecrement, key) |
| 718 | } |
| 719 | |
| 720 | // See Client interface for documentation. |
| 721 | func (c *RawBinaryClient) Stat(statsKey string) StatResponse { |
nothing calls this directly
no test coverage detected