Berkeley DB
version 6.1.19

com.sleepycat.db
Interface ReplicationViewHandler


public interface ReplicationViewHandler

An interface specifying a callback function to be used by replication views.


Method Summary
 boolean partial_view(Environment dbenv, String name, int flags)
          The application-specific function used by replication views to determine whether a database file is replicated.
 

Method Detail

partial_view

boolean partial_view(Environment dbenv,
                     String name,
                     int flags)
                     throws DatabaseException
The application-specific function used by replication views to determine whether a database file is replicated.

Parameters:
dbenv - The enclosing database environment handle.
name - The name of the database file.
flags - Currently unused.
Returns:
True if the file is replicated, or false if not.
Throws:
DatabaseException - if an error occurs when determining whether or not the database file is replicated.

Berkeley DB
version 6.1.19

Copyright (c) 1996, 2014 Oracle and/or its affiliates. All rights reserved.