Package org.jgroups.util
Interface Table.Visitor<T>
-
- All Known Implementing Classes:
Table.HighestDeliverable
,Table.Missing
,Table.NumDeliverable
,Table.Remover
public static interface Table.Visitor<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
visit(long seqno, T element, int row, int column)
Iteration over the table, used byTable.forEach(long,long,org.jgroups.util.Table.Visitor)
.
-
-
-
Method Detail
-
visit
boolean visit(long seqno, T element, int row, int column)
Iteration over the table, used byTable.forEach(long,long,org.jgroups.util.Table.Visitor)
.- Parameters:
seqno
- The current seqnoelement
- The element at matrix[row][column]row
- The current rowcolumn
- The current column- Returns:
- True if we should continue the iteration, false if we should break out of the iteration
-
-