blob: e1135a96ae9bdaf2c8569661110795758275f22d [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package nosql
import (
wire "v.io/syncbase/v23/services/syncbase/nosql"
"v.io/v23/context"
)
////////////////////////////////////////
// ConflictManager RPC methods
func (d *databaseReq) StartConflictResolver(ctx *context.T, call wire.ConflictManagerStartConflictResolverServerCall) error {
// Store the conflict resolver connection in the per-app, per-database
// singleton so that sync can access it.
d.database.resolver = call
return nil
}