Package com.couchbase.lite
Interface ReplicationFilter
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ReplicationFilter
Interface delegate that takes Document input parameter and bool output parameter Document push and pull will be allowed if output is true, otherwise, Document push and pull will not be allowed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
filtered(Document document, java.util.EnumSet<DocumentFlag> flags)
-
-
-
Method Detail
-
filtered
boolean filtered(@NonNull Document document, @NonNull java.util.EnumSet<DocumentFlag> flags)
-
-