1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-10 01:51:11 +09:00

Merge branch 'main' into GO-3690-new-sync-protocol-intermediate

This commit is contained in:
mcrakhman 2024-07-30 19:39:02 +02:00
commit 5302469a5c
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
14 changed files with 160 additions and 61 deletions

View file

@ -36,7 +36,7 @@ type syncTreeHandler struct {
const maxQueueSize = 5
func newSyncTreeHandler(spaceId string, objTree objecttree.ObjectTree, syncClient SyncClient, syncStatus syncstatus.StatusUpdater) synchandler.SyncHandler {
func newSyncTreeHandler(spaceId string, objTree peerSendableObjectTree, syncClient SyncClient, syncStatus syncstatus.StatusUpdater) synchandler.SyncHandler {
return &syncTreeHandler{
objTree: objTree,
syncProtocol: newTreeSyncProtocol(spaceId, objTree, syncClient),