00001
00002
00003
00004
00005
00006
00007
00008
00009 package com.sleepycat.db;
00010
00011 import com.sleepycat.db.internal.DbConstants;
00012
00013 public interface ReplicationTransport {
00014 int send(Environment dbenv,
00015 DatabaseEntry control,
00016 DatabaseEntry rec,
00017 LogSequenceNumber lsn,
00018 int envid,
00019 boolean noBuffer,
00020 boolean permanent,
00021 boolean anywhere,
00022 boolean isRetry)
00023 throws DatabaseException;
00024
00025 int EID_BROADCAST = DbConstants.DB_EID_BROADCAST;
00026 int EID_INVALID = DbConstants.DB_EID_INVALID;
00027 }