@InterfaceAudience.Private public class ScopeWALEntryFilter extends Object implements WALEntryFilter, WALCellFilter
| Constructor and Description |
|---|
ScopeWALEntryFilter() |
| Modifier and Type | Method and Description |
|---|---|
WAL.Entry |
filter(WAL.Entry entry)
Applies the filter, possibly returning a different Entry instance.
|
Cell |
filterCell(WAL.Entry entry,
Cell cell)
Applies the filter, possibly returning a different Cell instance.
|
public WAL.Entry filter(WAL.Entry entry)
WALEntryFilterApplies the filter, possibly returning a different Entry instance. If null is returned, the entry will be skipped.
Notice that you are free to modify the cell list of the give entry, but do not change the content of the cell, it may be used by others at the same time(and usually you can not modify a cell unless you cast it to the implementation class, which is not a good idea).
filter in interface WALEntryFilterentry - Entry to filterpublic Cell filterCell(WAL.Entry entry, Cell cell)
WALCellFilterfilterCell in interface WALCellFilterentry - Entry which contains the cellcell - Cell to filterCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.