mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-09 17:45:03 +09:00
34 lines
667 B
Go
34 lines
667 B
Go
package synctest
|
|
|
|
import (
|
|
"github.com/gogo/protobuf/proto"
|
|
|
|
"github.com/anyproto/any-sync/commonspace/sync/synctestproto"
|
|
)
|
|
|
|
type CounterRequest struct {
|
|
peerId string
|
|
*synctestproto.CounterRequest
|
|
}
|
|
|
|
func (c CounterRequest) Proto() proto.Message {
|
|
return c.CounterRequest
|
|
}
|
|
|
|
func NewCounterRequest(peerId, objectId string, counters []int32) CounterRequest {
|
|
return CounterRequest{
|
|
peerId: peerId,
|
|
CounterRequest: &synctestproto.CounterRequest{
|
|
ExistingValues: counters,
|
|
ObjectId: objectId,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (c CounterRequest) PeerId() string {
|
|
return c.peerId
|
|
}
|
|
|
|
func (c CounterRequest) ObjectId() string {
|
|
return c.CounterRequest.ObjectId
|
|
}
|