blob: 3de8d2c9dc96dfe5d0ff8b52fa6ded361424d2b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
package com.sleepycat.db;
public interface ReplicationManagerMessageDispatch {
void dispatch(ReplicationChannel chan, java.util.Set messages, boolean need_response);
}
|