我正在使用ektorp的ReplicationCommand.Builder()创建复制,如下所示:
ReplicationCommand replicationCommand = new ReplicationCommand.Builder()
.source(sourceDB)
.target(targetDB)
.continuous(isContinuous)
.build();
couchDbInstance.replicate(replicationCommand);
这不会在_replicator
db。
在我的应用程序中,我最终创建了多个复制,我可能会设置多个具有相同源 - 目标组合的复制。当我必须取消(多次复制之一)时,我最终取消了使用该源 - 目标组合的所有复制。
ReplicationCommand replicationCommand = new ReplicationCommand.Builder()
.source(sourceDB)
.target(targetDB)
.continuous(isContinuous)
.cancel(isContinuous)
.build();
couchDbInstance.replicate(replicationCommand);
我想进行命名复制(比如在通过蒲团完成时_replicator
),这样我就可以取消重复一次。
我该怎么做?
此致 维杰